我最初使用NSArray来存储C数据,但NSArray会减慢我的意图.
我使用以下代码将数组包装在NSDictionary中:
[self.m_morphpositions setobject:[NSValue valueWithBytes:&positionBuff objCType:@encode(float[(self.m_countVertices * 3)])] forKey:fourCC];
并使用以下方法检索C-float数组:
float posMorphs[(self.m_countVertices*3)];NSValue *posValues = [self.m_morphpositions objectForKey:name];[posValues getValue:&posMorphs];
当我退出数组时,对于每个错误的索引,值都设置为0.0.
我怎样才能解决这个问题?
解决方法 NSValue可能是针对标量值,而不是针对它们的数组.在这种情况下,使用NSData应该更容易NSData* data = [NSData dataWithBytes:&positionBuff length:(self.m_countVertices * 3 * sizeof(float))];
[data getBytes:posMorphs length:(self.m_countVertices * 3 * sizeof(float))];
另一种解决方案是在堆上分配数组并使用NSValue存储指针.
总结以上是内存溢出为你收集整理的ios – 在NSDictionary中存储C float数组全部内容,希望文章能够帮你解决ios – 在NSDictionary中存储C float数组所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)