基于 iPhone 导航的应用程序的最佳存储选择?

发布于 2024-11-18 05:52:01 字数 1431 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

欲拥i 2024-11-25 05:52:01

当您有静态数据时,属性列表非常方便。 Xcode 中内置了一个结构化编辑器,它们在代码中显示为 NSArrayNSDictionary 的实例。但它们并不是真正为管理不断变化的数据而设计的,它们只是一种序列化格式。

如果用户正在编辑复杂数据,那么最好使用 Core Data 或 SQLite。 Core Data 是一个更高级别的接口,设计用于与 Cocoa 一起使用。 SQLite 也可以完成这项工作,但我可能建议仅在您已经熟悉它的情况下使用它。

Property lists are very handy when you have static data. There's a structured editor built right into Xcode and they show up in code as instances of NSArray and NSDictionary. But they aren't really designed for managing changing data, they are just a serialisation format.

If the user is editing complex data, you're better off using Core Data or SQLite. Core Data is a higher level interface designed to be used with Cocoa. SQLite would do the job as well, but I'd probably suggest only using that if you are already familiar with it.

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