I'm using json-framework to parse some simple json in my iphone app, and it works fine. But now I'm needing to parse the json from google's reverse geo-coder which is very complex and really big. The json output can be seen here: http://maps.google.com/maps/geo?q=40.714224,-73.961452&output=json&sensor=true_or_false
I'm trying to get the "AdministrativeAreaName", "LocalityName", and the "CountryNameCode" out of it but can't even think about how to do it. I know the JSON itself is an NSDictionary with other NSDictionaries and arrays in it but I can't seem to figure this out. Can someone give me some pointers or maybe some example code on how I would parse json this complex using json-framework? Thanks so much, any help is appreciated!!