OStack程序员社区-中国程序员成长平台

标题: iphone - 编码为结构的 NSValue 数组 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 14:13
标题: iphone - 编码为结构的 NSValue 数组

我试图将结构的多维数组编码为 NSValue。

这是结构:

typedef struct {
    float Position[3];
    float Color[4];
} Vertex;

const Vertex Vertices[] = {
    // Front
    {{1, -1, 0}, {1, 0, 0, 1}},
    {{1, 1, 0}, {1, 0, 0, 1}},
(etc...)

我需要编码成 NSValue 以将其存储在对象“Block”中。

这就是我要做的存储:

Block *newBlock = [[Block alloc] init];
newBlock.blockVertices = [NSValue value:&Vertices withObjCTypeencode(Vertex)];

然后把它拿回来:

Vertex tempVertices[24];
[newBlock.blockVertices getValue:&tempVertices];

一切似乎都很好,然后我尝试像这样比较值:

for (int i = 0; i < 24; i++){
    NSLog(@"%f = %f", Vertices[i].Position[0], tempVertices[i].Position[0]);
    NSLog(@"%f = %f", Vertices[i].Position[1], tempVertices[i].Position[1]);
    NSLog(@"%f = %f", Vertices[i].Position[2], tempVertices[i].Position[2]);
    NSLog(@" ");
}

我得到了奇怪的结果,例如: -1.000000 = -1.998905

问题可能出在哪里?任何帮助将不胜感激。



Best Answer-推荐答案


你需要告诉 @encode 有多少个 Vertex 结构被编码,例如:

[NSValue value:&Vertices withObjCTypeencode(Vertex[24])];

关于iphone - 编码为结构的 NSValue 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11062702/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4