码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 读取Json 代码

时间:2014-09-19 17:28:25      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   for   文件   2014   

保存一下iOS 读取Json的代码,留着以后Copy用,哈哈。

 

    NSString* path = [[NSBundle mainBundle] pathForResource: @"Sandwiches"
                                                     ofType: @"json"];
    NSString* data = [NSString stringWithContentsOfFile: path
                                               encoding: NSUTF8StringEncoding
                                                  error: nil];
    
    NSData* resultData = [data dataUsingEncoding:NSUTF8StringEncoding];
    _sandwiches = [NSJSONSerialization JSONObjectWithData:resultData
                                                       options:kNilOptions
                                                         error:nil];

 

json文件,或者从网络读取的json,如图bubuko.com,布布扣

iOS 读取Json 代码

标签:style   blog   http   color   io   os   for   文件   2014   

原文地址:http://www.cnblogs.com/treejohn/p/3981789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!