th.json
{"lessons":[{"id":"38","fach":"D"},{"id":"39","fach":"M"}]}
ViewController.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);
Output NSLog list return
(null)
my apps use json file internal my project. and "th.json" in my project folder. but NSArray *list can't display data in Json file.