将子对象附加到 Core Data 对象
我目前正在尝试将 JSON 解析为核心数据对象。我将 JSON 解析为类别,然后解析为子类别。
当我解析子类别时,我想将它们插入到关联的类别对象中。我可以看到 Xcode 为此生成了方法,但我不知道如何使用它们。
- (void)addSubCategoryObject:(SubCategory *)value {
我想一次添加一个,而不是一次全部添加。
I'm currently trying to parse JSON into Core Data objects. I parse the JSON into Categories and then Subcategories.
When I parse the subcategories I would like to insert them into the associated Category object. I can see that Xcode generates methods for this, but I can't figure out how to use them.
- (void)addSubCategoryObject:(SubCategory *)value {
I would like to add them one at the time, not all at once.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
在调用之前两个对象都需要存在。
Like this:
Both objects need to exist before you make the call.