标签:json 系统解析
获取文件路径
NSString * jsonPath = [[NSBundle mainBundle] pathForResource:@"Student" ofType:@"json"];
2.初始化NSData对象
NSData *data = [NSData dataWithContentsOfFile:jsonPath];
3.解析(NSJSONReadingMutableContainers) 可变的一个容器
// NSJSONReadingMutableLeaves
// NSJSONReadingAllowFragments
NSMutableArray * arr = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
NSLog(@"%@",arr);
标签:json 系统解析
原文地址:http://qccccc.blog.51cto.com/6004423/1552646