是否可以在 iOS 中将 NSMutableArray 或 NSDictionary 数据保存为文件?
我想将 NSMutableArray
或 NSDictionary
保存为永久文件。然后,我想稍后重新打开该文件。
这可能吗?如果是这样,我该怎么办?
I want to save an NSMutableArray
or NSDictionary
as a permanent file. Then, I would like to reopen the file later.
Is this possible? If so, how can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
写入文件
如果文件不存在,则从文件读取
myArray 将为 nil。 NSDictionary也有类似的方法。请检查参考资料以了解这些方法的详细信息。
To write in file
To read from file
myArray will be nil if file is not present. And NSDictionary has similar methods. Please check the reference for the details of these methods.
也许您可以将字典转换为 JSON 数据,并将其写入文件。
May be you can convert a Dictionary to JSON data.and write it to a file.