美文网首页
NSJSONSerialization类中的枚举值说明

NSJSONSerialization类中的枚举值说明

作者: 田心今心九日 | 来源:发表于2017-07-24 15:07 被阅读26次

    NSJSONReadingOptions:

    NSJSONReadingMutableContainers:返回可变容器,NSMutableDictionary或NSMutableArray。

    NSJSONReadingMutableLeaves:返回的JSON对象中字符串的值为NSMutableString。但是此枚举值目前在iOS 7上测试不好用,应该是个bug,参见:NSJSONReadingMutableLeaves option is not working

    The problem is also mentioned here github.com/mattt/AnyJSON : "NSJSONReadingMutableLeaves is not supported (it doesn't even work with NSJSONSerialization on iOS 5+)"

    NSJSONReadingAllowFragments:允许JSON字符串最外层既不是NSArray也不是NSDictionary,但必须是有效的JSON Fragment。例如使用这个选项可以解析 @“123” 这样的字符串。参见:NSJSONReadingAllowFragments reading

    NSJSONWritingOptions:

    NSJSONWritingPrettyPrinted:的意思是将生成的json数据格式化输出,这样可读性高,不设置则输出的json字符串就是一整行。

    相关文章

      网友评论

          本文标题:NSJSONSerialization类中的枚举值说明

          本文链接:https://www.haomeiwen.com/subject/nijbkxtx.html