iOS에서 로컬 JSON 또는 Plist 파일 읽기

399 단어
NSString *jsonPath = [[NSBundle mainBundle] pathForResource:@"china_Updated" ofType:@"json"];     
NSData *data = [NSData dataWithContentsOfFile:jsonPath];   
NSError *error = nil;    
id result = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
     NSLog(@"
%@", [error localizedDescription]);

좋은 웹페이지 즐겨찾기