如何从 iOS5 中的安全网站访问 json 文件?我正在解析,NSJSONSerialization
这就是方法的样子:
- (void)parseJSON {
NSData *data = [NSData dataWithContentsOfURL: [NSURL URLWithString:@"https//:username:password@www.mysecuresite.com"]];
NSError *error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSArray *items = [json objectForKey:@"projects"];
[self setTableData:items];
}
否则,访问不安全的网站并返回解析的 json 文件是可以的,只是不能通过安全的网站。