I have the following JSON:
{
\"meta\": {
\"code\": 200
},
\"response\": {
\"deals\": [
{
You could try changing your code to something like this:
NSDictionary *primaryLocation = [[[deal valueForKey:@"business"] valueForKey:@"locations"] objectAtIndex:0];
NSLog(@"Address: %@", [primaryLocation valueForKey:@"address"]);
NSLog(@"City: %@", [primaryLocation valueForKey:@"locality"]);
NSLog(@"Phone: %@", [primaryLocation valueForKey:@"phone"]);