首页 > 代码库 > oc解析JSON文件

oc解析JSON文件

1利用NSBundle 取得json文件路径

 NSString *path=[[NSBundle mainBundle]pathForResource:@"help.json" ofType:nil];

 2把文件转成NSData

NSData *data=http://www.mamicode.com/[NSData dataWithContentsOfFile:path];

3利用NSJSONSerialization把data解析成数组或字典类型

NSArray *dicArray=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];

 

oc解析JSON文件