在 iPhone 中保存个人资料
在我的应用程序中,我正在写入一些数据,我想保存它以便以后检索它。我该如何保存它以及将其保存在哪里?
请提出一些想法...
In my app, I am writing some data, and I want to save it so that I can retrieve it later. How can I save it and where will it be saved?
Please suggest some ideas...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您想使用 Core Data 将其存储在数据库中。如果您提供更具体的信息,我也许可以给出更具体的答案。
http://developer.apple.com/library/ mac/#documentation/Cocoa/Conceptual/CoreData/cdProgrammingGuide.html
I think you want to store it in a database using Core Data. If you give more specifics I may be able to give a more specific answer.
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CoreData/cdProgrammingGuide.html
NSUserDefaults 是显而易见的建议。
其他建议是将其写入文档目录中的 .plist 文件或使用 core-data,具体取决于您想要保存的数量。
NSUserDefaults would be the obvious suggestion.
Other suggestions would be to write it to a .plist file in the documents directory or use core-data depending on how much you would want to save.