我有一个 WebService,它给了我闲置的 Json-String:
"{\"password\" : \"1234\", \"user\" : \"andreas\"}"
我调用网络服务并尝试解析返回的数据,例如:
[NSURLConnection sendAsynchronousRequest: request
queue: queue
completionHandler: ^(NSURLResponse *response, NSData *data, NSError *error) {
if (error || !data) {
// Handle the error
} else {
// Handle the success
NSError *errorJson = nil;
NSDictionary *responseDict = [NSJSONSerialization JSONObjectWithData: data options: NSJSONReadingMutableContainers error: &errorJson];
NSString *usr = [responseDict objectForKey:@"user"];
}
}
];
但生成的 NSDictionary 看起来像:
有什么影响,我无法获得值 - 例如用户。有人可以帮助我,我做错了什么吗?- 谢谢。