NSString 属性列表问题
验证 NSString 是否是 propertyList 的最佳方法是什么?如果我调用 NSString 的 -propertyList 方法,如果它无法解析字符串,它将抛出异常。
What is the best way to validate whether a NSString is a propertyList or not? If I call NSString's -propertyList method it will throw an exception if it cannot parse the string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
NSPropertyListSerialization
尝试解析数据,它可以如果不能,则向您传回一个带有一些诊断信息的NSError
对象。例如:Use
+propertyListWithData:options:format:error:
onNSPropertyListSerialization
to attempt to parse the data, it can pass you back anNSError
object with some diagnostics if it can't. For example: