Objective-C arrayWithPlist (已经在 NSString 中)
我有一个已经包含 pList 的 NSString。
如何将其转换为 NSArray? (无需将其保存到磁盘,只需使用 arrayWithContentsOfFile 重新加载它,然后必须将其删除。)
make arrayWithPlist 或 arrayWithString 方法在哪里? (或者我该如何制作自己的?)
NSArray *anArray = [NSArray arrayWithPlist:myPlistString];
I have an NSString that already contains a pList.
How do I turn it into an NSArray?
(WITHOUT saving it to disk, only to reload it back with arrayWithContentsOfFile, and then have to delete it.)
Where is the make arrayWithPlist or arrayWithString method?
(Or how would I make my own?)
NSArray *anArray = [NSArray arrayWithPlist:myPlistString];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用 NSPropertyListSerialization:
该特定方法是在 iOS 4.0/Mac OS X 10.6 中引入的。在这些版本之前,您将使用:
You want to use
NSPropertyListSerialization
:That particular method was introduced with iOS 4.0/Mac OS X 10.6. Prior to those releases, you would use: