美文网首页iOS 控件详解
iOS NSJSONSerialization

iOS NSJSONSerialization

作者: 风冰武 | 来源:发表于2018-10-26 10:05 被阅读1次
//根据JSON数据解析出一个基础对象     56行
//参数1:JSON数据对象
//参数2:读取JSON数据和创建基础对象的选项
//参数3:错误
//返回: 根据JSON数据解析出的基础对象
+ (nullable id)JSONObjectWithData:(NSData *)data options:(NSJSONReadingOptions)opt error:(NSError **)error;

typedef NS_OPTIONS(NSUInteger, NSJSONReadingOptions) {
    NSJSONReadingMutableContainers, //生成NSMutableArray或NSMutableDictionary对象
    NSJSONReadingMutableLeaves,     //可生成可变的NSString对象
    NSJSONReadingAllowFragments     //可生成非NSArry或NSDictionary对象
};

1: 父类

继承于: NSObject

2: 属性


相关文章

网友评论

    本文标题:iOS NSJSONSerialization

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