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! While you're at it, check out some resources Treehouse students have shared here.
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
Zachary Lilley
4,288 PointsBlog Reader not displaying after Downloading and parsing JSON
Hey,
After finishing the section on downloading and parsing JSON data, the data doesnt display when i run the simulator in xcode. it shows up in the command line tho in xcode. I tried looking over my code and comparing it to the given project files and i couldnt figure anything out. Any help will be greatly appreciated!!
1 Answer
Zachary Lilley
4,288 PointsActually i figured it out after reading through it long enough. In the UITableViewCell method I capitalized both keys "Author" and "Titles". Once I made them lowercased it worked perfectly. I guess this occurred because when the app runs it looks for the specific key you typed and is case sensitive. So when looking for data to display it overlooked the two keys because it didn't find any exact matches. Is this pretty much correct?
Amit Bijlani
Treehouse Guest TeacherGlad you figured it out. Yes, the key comparison is case sensitive.
Amit Bijlani
Treehouse Guest TeacherAmit Bijlani
Treehouse Guest TeacherCould you please paste your code here so we can take a look?