我正在使用这样的 AFNetworking 工具使用 Web 服务:
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
[self GotJSONSuccess:JSON :response ];
} failure: nil ];
[operation start];
Web 服务响应并给我以下 json:
[
{
"statusid": 1,
"statusdesc": "ASSIGNED"
},
{
"statusid": 2,
"statusdesc": "COMPLETED"
},
{
"statusid": 3,
"statusdesc": "IN TRANSIT"
},
{
"statusid": 4,
"statusdesc": "DELAYED"
},
{
"statusid": 5,
"statusdesc": "ON HOLD"
}
]
我正在使用以下内容尝试解析 json:
- (void)GotJSONSuccess: (NSString*) JSON : (NSHTTPURLResponse*) response
{
NSString *newString = [NSString stringWithFormat:@"%@",JSON];
NSLog(@"response: %@", JSON);
NSData* data = [newString dataUsingEncoding:NSUTF8StringEncoding];
NSError* error;
id jsonObjects = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
if (error){
NSLog(@"error is %@", [error localizedDescription]);
return;
}
NSArray *keys = [jsonObjects allKeys];
for (NSString *key in keys){
NSLog(@"%@ is %@",key, [jsonObjects objectForKey:key]);
}
}
但是代码落入错误块中,输出为“无法完成操作。(Cocoa 错误 3840。)”
我在解析这个简单的 json 时做错了什么?
有没有比我正在采用的更好的解析方法?
如果可能的话,我想坚持使用原生 iOS 类和方法进行解析。