th.json
{"lessons":[{"id":"38","fach":"D"},{"id":"39","fach":"M"}]}
视图控制器.m
NSBundle *bundle = [NSBundle bundleForClass:[self class]];
NSString *JsonData = [bundle pathForResource:@"th" ofType:@"json"];
SBJsonParser *parser = [[SBJsonParser alloc] init] ;
NSDictionary *jsonObject = [parser objectWithString:JsonData error:NULL];
NSArray *list = [jsonObject objectForKey:@"lessons"];
NSLog(@"%@", list);
输出 NSLog 列表返回
(null)
我的应用程序在我的项目内部使用 json 文件。和我的项目文件夹中的“th.json”。但是 NSArray *list 无法在 Json 文件中显示数据。