iPhone NS 用户默认值
我已经在 NSUserDefaults 中存储了一些值,现在我需要使用 NSFileManager 检查默认值中是否存在某个值。如果该值存在,那么我需要跳过一些解析,并在表视图中显示信息。请帮我弄清楚如何进行这项检查。
I have stored some values in NSUserDefaults and now I need to check, using NSFileManager, whether a certain value exists in the defaults. If the value exsists then I need to skip some parsing, and display information in a tableview. Please help me figure out how to do this check.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用类似的方法
来检索该值。
You can use something like
to retrieve the value.
您需要使用 NSData 而不是 NSFile 管理器
从 nsuserdefaults 获取值到 nsData 并检查 nsData 中是否有任何可用值,如果是,则执行一些活动,否则忽略。
此处是同一讨论的链接。
希望这会对您有所帮助。
You need to use NSData instead NSFile manager
Get values from nsuserdefaults to nsData and check whether any values available in nsData, if yes then perform some activity else ignore.
HERE is the link for the same discussion.
Hope this will help you.