iPhone - 阅读和保存偏好设置
我已阅读有关首选项的Apple文档< /a> 但这对我来说仍然有点复杂。我有一个带有自定义屏幕的应用程序,用于设置首选项,我只想要代码来管理读写内容。
您是否知道详细的教程(不是几年前写的)或项目示例代码,我可以阅读以理解?
I've read the Apple doc about Preferences but this is still a little bit complex for me to understand. I have an application with a custom screen for setting the Preferences, and I'd like just the code to manage the read and write stuff.
Would you know a detailed tutorial (not writen years ago) or a project sample code somewhere I could read to understand ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该使用 NSUserDefaults :
你这样设置:
然后你可以这样设置新对象:
当你需要读取一个值时,你可以使用 :
并记住在每次更改后同步你的更改:
顺便说一句
你可以从应用程序中的任何视图读取和写入 NSUserDefaults。
编辑
要查看 NSUserDefaults 中的所有数据,您可以使用:
这将打印存储在 plist 中的所有键和值。
祝你好运
You should use NSUserDefaults :
You set it like that:
then you can set new objects like that:
when you need to read a value you can use :
and remember to synchronize your changes after each change:
BTW
You can read and write to the NSUserDefaults from any view in your application.
Edit
To see all of the data in the NSUserDefaults you can use:
This will print all the keys and values stored in the plist.
GOOD LUCK