- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
NSURL *site_url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/json/data/post?sid=%@", SECURE, PASSCODE]];
NSData *jsonData = [NSData dataWithContentsOfURL:site_url];
NSError *error = nil;
NSDictionary *dataDictionary = [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];
self.items = dataDictionary;
}
我正在尝试解析 json 数据。它适用于来自实时服务器的数据。但是,当我将链接更改为http://localhost:8090
. 它停止工作。
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'data parameter is nil'
我可以从网络浏览器的数据中访问它。有谁知道这是为什么?