Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

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 :)