#import "ViewController.h"
@interface ViewController ()
{
NSDictionary *dic;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSString *path = [[NSBundle mainBundle]pathForResource:@"Data" ofType:@"json"];
NSData *dataJson = [NSData dataWithContentsOfFile:path];
dic = [NSJSONSerialization JSONObjectWithData:dataJson options:NSJSONReadingMutableContainers error:nil];;
}
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
NSLog(@"dataJson =%@",dic);
}
@end
JSON
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- json.dumps是将一个Python数据类型列表进行json格式的编码解析,示例如下: 这样我们就将一个lis...
- ** 本文章著作权归没梦想的咸鱼丶所有,转载须说明来源** 1.首先明确JSON是什么? json是一种数据交换格...
- 1、JSONString转换为字典 2、字典转换为JSONString
- 最近在学习Vue.js,里面有个存储、读取本地缓存的功能,不停地用JSON.parse(),和JSON.strin...
- pom.xml 内容: <dependency><groupId>net.sf.json-lib</groupId...