将子对象附加到 Core Data 对象

发布于 2024-11-03 07:40:46 字数 228 浏览 0 评论 0原文

我目前正在尝试将 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 技术交流群。

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

发布评论

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

评论(1

小红帽 2024-11-10 07:40:46

像这样:

[aCategoryObject addSubCategoryObject:aSubCategoryObject];

在调用之前两个对象都需要存在。

Like this:

[aCategoryObject addSubCategoryObject:aSubCategoryObject];

Both objects need to exist before you make the call.

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