我有一个应用程序通过 json 从服务器接收提要。
我一直在为 iOS5 构建它,但在过去几周使用 iOS6 进行了测试。我今天用 iOS5 设备测试,一切都崩溃了。
代码如下所示:
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.myserver.com/news.json"]];
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
它工作没有问题,但现在它返回一个空值。数据不为空。