标签: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,如图
标签:style blog http color io os for 文件 2014
原文地址:http://www.cnblogs.com/treejohn/p/3981789.html