我需要使用 NSJSONSerialization 类参考来读取 JSON 文件,并且我发现的所有关于使用此类的示例都是从网页本身读取内容,而不是从之前创建的 JSON 文件中读取。任何人都知道如何使用该类从 JSON 文件中解析?谢谢。
问问题
4488 次
1 回答
13
简单,快速的'n'dirty示例:
NSString *jsonPath = [[NSBundle mainBundle] pathForResource:@"foobar"
ofType:@"json"];
NSData *data = [NSData dataWithContentsOfFile:jsonPath];
NSError *error = nil;
id json = [NSJSONSerialization JSONObjectWithData:data
options:kNilOptions
error:&error];
NSLog(@"JSON: %@", json);
于 2012-08-09T19:53:40.120 回答