如何在 Objective-C 中建模 n 对 n 关系?
我正在尝试在 Objective-C 中建模 n 对 n 关系。 假设我有两个实体:电影和剧院。 一部电影有一系列剧院,一个剧院有一系列电影。 我如何在 Objective-C 中做到这一点,以 1) 获得正确的关系,2) 确保正确管理内存。
I am trying to model an n-to-n relationship in Objective-C. Suppose I have two entities: Movie and Theater. A Movie has an array of Theaters and a Theater has an array of Movies. How do I do this in Objective-C to 1) get the relationship correct and 2) make sure memory is managed correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Apple 平台上,您可以访问核心数据,这是一个非常不错的持久化框架。
On Apple platforms you have access to Core Data, a very nice persistence framework.
您可以使用 SQLLitePersistentObjects:
它允许您定义如下代码:
并在中使用它您的代码:
内存和持久性由框架自动处理。 但是,如果您正在处理大型数据集,请务必使用具有配对数组功能的 NSArray 对象,而不是分配和取消分配数百或数千个 SQLLitePersistentObject。
You can use SQLLitePersistentObjects:
It allows you to define code like the following:
And use it in your code:
Memory and persistence is automatically handled by the framework. However, if you are working with large data sets be sure to use NSArray objects with the paired arrays functionality instead of allocating and deallocating hundreds or thousands of SQLLitePersistentObjects.