I have used this method,
NSDictionary *jsonObject=[NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableLea
Please Try the following Code.
NSError* error; NSDictionary* json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error]; NSArray* latestLoans = [json objectForKey:@"loans"]; NSLog(@"loans: %@", latestLoans);