我正在尝试制作一个天气应用程序,我在网上找到了一个很棒的 JSON 天气 API。我在用
NSData * data = [NSData dataWithContentsOfURL: [NSURL URLWithString: absoluteURL]];
NSError * error;
NSDictionary * json = [NSJSONSerialization JSONObjectWithData: data //1
options: kNilOptions
error: & error
];
NSLog(@"%@", json);
NSLog([NSString stringWithFormat: @"location: %@", [json objectForKey: @"status"]]);
获取数据,但它不会工作,日志返回(null)
。有人可以向我解释如何获取 JSON 文件的字符串和值吗?谢谢!