我正在使用 AFNetworking 进行身份验证,如下所示
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request
success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
// Parsing will be here
{
failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
NSLog(@"ERROR :jason is %@",JSON);
}];
[client enqueueHTTPRequestOperation:operation];
下面是从服务器接收到的 JSON
{
"first_name" = A;
"last_name" = B;
}
问题:如何在 ios 中解析这个 JSON。我被卡住了,因为服务器的返回根本没有任何标签。如果它的格式是
{
"user": {
"first_name": "A",
"last_name": "B",
}
}
我可以通过执行以下操作来解析
NSArray *userList = [[NSArray alloc] init];
userList = [JSON objectForKey:@"results"];
有任何想法吗?