如何在CoreData中保存NSValue的NSMutableArray?

发布于 2024-09-28 10:33:42 字数 106 浏览 7 评论 0原文

我正在为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧梦荧光笔 2024-10-05 10:33:42

我找到了我的问题的答案,
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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文