我认为你可以做到这一点的最好方法是使用 sqlite,因为你是 IOS 新手。将您想要的所有信息保存在本地数据库中并显示在屏幕上。
如果您的数据结构很小,则可以使用 plist。
Note that property lists should be used for data that consists primarily
of strings and numbers. They are very inefficient when used with large blocks
of binary data. A property list is probably the easiest to maintain, but it will be loaded into memory all at once. This could eat up a lot of the device's memory.
With Sqlite you will easily be able delete , edit, insert your data into the database.
Core data also uses sqlite for data storage only it helps you to manage your data objects, their relationships and dependencies with minimal code.
而且由于您是新手,因此我认为核心数据不是一个好主意..所以我建议从普通的 sqlite 开始。将数据保存在应用程序的一个文件夹中,并将其路径存储在数据库中。
您不必编写不同的 plist。如果您正在使用,您可以使用相同的 plist。
编辑:这是一个链接,可以帮助您学习 sqlite
http://www.iosdevelopment.be/sqlite-tutorial/