核心数据关系的自定义设置器以强制反向、互惠关系

发布于 2024-11-03 11:24:57 字数 463 浏览 1 评论 0原文

我想为 NSManagedObject 核心数据一对多关系(Object.lated)创建一个自定义setter,这样当对象 A 添加到 B.lated 时,B 会自动添加到 A.lated,并且如果 A 被删除从 B.相关中,B 会自动从 A.相关 中删除。我之前已经能够为基本属性(例如 NSString 和 NSNumber 属性)创建自定义设置器,但这让我有些头痛。当我的函数 -(void)setRelated:(NSSet*)newSet 被调用时,似乎 Self.lated 属性已经使用 newSet 列表设置了!这里的最佳实践是什么?我还研究过使用 didChangeValueForKey:(NSString *)inKey withSetMutation:(NSKeyValueSetMutationKind)inMutationKind usingObjects:(NSSet *)inObjects 来观察此属性,但未能使其正常工作。

I want to create a custom setter for an NSManagedObject core data one-to-many relationship (Object.related), so that when object A is added to B.related, B is automatically added to A.related, and if A is removed from B.related, B is automatically removed from A.related. I have been able to create custom setters for basic properties (such as NSString and NSNumber properties) before, but this is causing me some headaches. When my function -(void)setRelated:(NSSet*)newSet is called, it seems that the Self.related property is already set with the newSet list! What is the best practice here? I have also looked into watching this property with didChangeValueForKey:(NSString *)inKey withSetMutation:(NSKeyValueSetMutationKind)inMutationKind usingObjects:(NSSet *)inObjects but have not been able to get it to work properly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

椵侞 2024-11-10 11:24:57

关系的逆关系由 CoreData 管理(如果您在模型中设置了它)。如果你尝试手动完成,你最终会遇到各种各样的麻烦。

倒数是所有关系的属性,如果未在建模工具中设置它们,您应该会收到警告。

The inverse of a relationship is managed by CoreData (if you set it up in your model). If you try to do it manually you will end up with all kinds of trouble.

The inverse is a property on all relationships, you should be getting warnings if they are not set in the modeling tool.

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