我正在尝试使用方法 GLKVector3MakeWithArray 创建一个向量。
我收到以下错误,我有点困惑为什么“将'float'传递给'float *'的不兼容类型”
这是我的代码:
[self.offsetArray addObject:[jsnmphset valueForKey:@"offset"]];
// Create a Vector3f from the array offset stored in the nsdictionary
GLKVector3 offset = GLKVector3MakeWithArray([[self.offsetArray objectAtIndex:0] floatValue]);
谢谢