IOS oc 关于如何读取本地JSON
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS oc 关于如何读取本地JSON相关的知识,希望对你有一定的参考价值。
参考技术A 由于Xcode和MacBook pro经常自己更新,所以我的自己的APP不打算走本地代理了,准备写到本地json1首先创建路径
//获取文件路径
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"路径名称" ofType:@"json"];
2读取data
//根据文件路径读取数据
NSData *data = [[NSData alloc] initWithContentsOfFile:filePath];
3data专程json
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
options的几种类型
https://javenl.github.io/ios/2015/06/29/NSJSONSerialization.html
以上是关于IOS oc 关于如何读取本地JSON的主要内容,如果未能解决你的问题,请参考以下文章