如何在 iphone 3.0 中将值存储在 Plist 中并在运行时读取?
如何在 iphone 3.0 中在 Plist 中存储值并在运行时读取?
提前致谢。
how to store values inside Plist and read while runtime in iphone 3.0?.
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有一个仅包含“标准”数据类型(例如字符串、日期、数字、数组和字典)的数组或字典,则可以使用
-[NSArray writeToFile:atomically:]< 将内容保存到 .plist 文件中/code> 或
-[NSDictionary writeToFile:atomically:]
。要读取文件,请使用-initWithContentsOfFile:
。请注意,应用程序包在 iPhone OS 设备上不可写,因此您必须将该文件存储在应用程序的 Documents 目录中。
If you have an array or dictionary that contains only "standard" data types like strings, dates, numbers, arrays, and dictionaries, you can save the contents to a .plist file with
-[NSArray writeToFile:atomically:]
or-[NSDictionary writeToFile:atomically:]
. To read the file, use-initWithContentsOfFile:
.Note that the application bundle is not writable on iPhone OS devices so you will have to store the file in your app's Documents directory.
该解决方案可以应用于 NSArray 和 NSDictionary。
使用此方法从属性列表创建一个
NSData
并使用writeToFile
将其保存到磁盘。使用此方法从
NSData
读取属性列表。例子:
This solution can be applied to both
NSArray
andNSDictionary
.Use this method to make a
NSData
from property list and usewriteToFile
to persist it to disk.Use this method to read property list from
NSData
.Example: