Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的应用程序制作历史列表,并希望将 .plist 与 3 个数组一起使用 - 图片名称、日期和一些文本数据。plist 是解决这个问题的好方法吗?我认为历史条目的最大数量将是 +/- 500。
使用plist是一个不错的选择。但请记住,数据是从plist整个文件中读取的。因此,它可能会降低性能。
plist
并且为了保存历史,如果图片名称、日期和一些文本相关;您不能将它们分组到字典中而不是使用 3 个不同的数组吗?
像:
<entry> <pictureName>Name of Picture</picture> <date>date on picture</date> <text>some text</text> </entry>
编辑:
如评论中所述,您也可以查看CoreData。这是一种存储/检索数据的优雅方式。
CoreData
这是一个很好的入门教程:)