美文网首页
iOS 读取本地JSON 或者Plist文件

iOS 读取本地JSON 或者Plist文件

作者: Paco_Ke | 来源:发表于2016-10-17 14:13 被阅读1973次
    NSString *jsonPath = [[NSBundle mainBundle] pathForResource:@"china_Updated" ofType:@"json"];     
    NSData *data = [NSData dataWithContentsOfFile:jsonPath];   
    NSError *error = nil;    
    id result = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
         NSLog(@"\n%@", [error localizedDescription]);
    

    相关文章

      网友评论

          本文标题:iOS 读取本地JSON 或者Plist文件

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