I have been doing some work with JSON recently and it can be very difficult to wade through the results. This snippet of code can very easily show you keys and values for objects within a NSDictionary.
NSString *key; for(key in jsonDictionary){ NSLog(@"Key: %@, Value %@", key, [jsonDictionary objectForKey: key]); }
I hope this helps out!



