iOS。应用程序更新后保护设置不被重置?
我使用“plist”文件来存储我的设置。我找到的唯一答案是保存此目录中的文件:
NSString *rootPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
但我不知道该怎么做。
I use "plist" files to store my settings. The only answer I found is to save the files from this directory:
NSString *rootPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
But I don't know how to do that thing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读文档: NSUserDefaults< /a>
因此,您可以在 NSUserDefaults 中保存和读取您的设置。
下次尝试更具体地说明你想做什么。
Read the docs: NSUserDefaults
So you can save and read your settings in and from NSUserDefaults.
Next time try to be more specific of what you want to do.