美文网首页
本地造假数据模拟服务器给的json

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

作者: 动感超人丶 | 来源:发表于2017-06-30 14:42 被阅读36次

    读取.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];
     
    

    相关文章

      网友评论

          本文标题:本地造假数据模拟服务器给的json

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