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 trialAbba Ismial
2,419 PointsJSON Objective
Hello Guys, pls can i anyone help me see what the error is in this place? Thank you
// We've already created a NSData object with some json encoded data for you
import Foundation
let jsonString : NSString = "{\"results\": \"success\"}"
let userCourseData : NSData = jsonString.dataUsingEncoding(NSUTF8StringEncoding)!
let userCourseDictionary: NSDictionary = NSJSONSerialization.JSONObjectWithData(userCourseData!, option: nil, error: nil) as NSDictionary
// Now you just need to decode it
1 Answer
Max Hirsh
16,773 PointsHey, I think you just made a small typo. It should be "options: nil" instead of "option:nil". Let me know if that helps!