以下のように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"];
何か案は?