欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

本地造假数据模拟服务器给的json

程序员文章站 2022-05-20 09:26:18
...

读取.json文件代码部分

 NSString * json = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"json"];
 
 NSData *data=[NSData dataWithContentsOfFile:json];
 NSError *error;
 NSDictionary * dict =[NSJSONSerialization JSONObjectWithData:data
 options:NSJSONReadingAllowFragments
 error:&error];