好的男孩和女孩,这是我的问题:
我想在我的 iOS 应用程序中读取 JSON 流,但是当我尝试时,它返回
2013-04-12 02:35:01.479 Test[81414:303] (null)
但我的文件存在并且绝对不是空的!你可以在这里找到它http://api.kalokod.com/cce/mainfeed.json
我的阅读脚本是:
NSError *error;
NSURL *file = [NSURL URLWithString:@"http://api.kalokod.com/cce/mainfeed.json"];
NSString *string = [NSString stringWithContentsOfURL:file
encoding:NSUTF8StringEncoding
error:&error];
NSLog(@"%@", string);