如何在CoreData中保存NSValue的NSMutableArray?
我正在为 ipad 做绘图应用程序,需要保存 CGPoint 的 NSMutableArray 的倍数(转换为 NSValue),建议我选择 coredata 函数或任何其他方法来保存更多数量的数组
I'm doing drawing app for ipad which need to save multiples of NSMutableArray of CGPoint (Converting into NSValue), suggest me for choosing coredata functions or any other approachs for saving more number of arrays
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了我的问题的答案,
1. NSValue 包含 CGPoint 值(CGPoint 是 C 结构体),为此我们首先必须进行转换 [NSValue valueWithCGPoint: anyCGPoint];现在我们可以将它保存到 NSMutableArray 中。
2. 要将 NSMutableArray 保存到 Coredata 中,首先我们必须将其转换为 NSSet。它将通过 Coredata 中的一对多关系来完成。
i found the answer for my question,
1. NSValue contain CGPoint values (CGPoint is C struct) for that first we have to do casting [NSValue valueWithCGPoint: anyCGPoint]; now we can save it into NSMutableArray.
2. To save a NSMutableArray into Coredata, first we have to convert it into NSSet. It will be done by one to many relationship in Coredata.