Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

GRAYSON D SMITH
1,547 PointsParsing "second level" JSON
How can keys from the JSON's "second level" be accessed?
For example, to access "author" in this JSON file I need to go 2 levels deep.
2 Answers

Patrick Serrano
13,834 PointsIf you haven't already take a look at the Build a Photo Browsers iPhone App course. It uses the Instagram API, and will show you how to do that.
If I'm remembering correctly, you'll want to store the JSON in a dictionary and then you would access nested levels like so:
nameOfDictionary[@"level1 key"][@"level2 key"]

GRAYSON D SMITH
1,547 PointsThanks Patrick, that worked. I'll check out that project once I'm done with this one. On a roll :)