我在 nskeyedarchiver 中使用什么文件扩展名
我正在编写一个使用 NSKeyedArchiver 来保存其数据的应用程序。 我的文件应该是 ishotTrack.plist 还是 ishotTrack.arch?
I am writing an app that uses NSKeyedArchiver to save its data.
Should my file be ishotTrack.plist or ishotTrack.arch?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSKeyedArchiver 创建的档案是二进制属性列表,因此使用 plist 文件扩展名是有意义的。另一方面,它们不是人类可读的,因此打开 plist 对任何人都没有多大帮助。
The archives created with NSKeyedArchiver are binary property lists, so it makes sense to use plist file name extension. On the other hand they aren't human-readable, so opening the plist won't help anybody much.