Is there an easy way to pull a specific value from an NSDictionary without calling objectForKey for every level that I want to go down to?
For instance:
{ response = { data = { foo = "bar"; }; user = { "first_name" = "Joe"; "last_name" = "Bloggs"; }; }; }
Is there an easy way to pull first_name ? In fact, my data is much more nested than that, and I want to pull the data at different levels.
Thanks.
source share