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.

Rolando Cruz
2,995 Points"Cast from 'NSData?' to unrelated type 'NSDictionary' always fails"
I get that error with this code:
let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)/")
let forecastURL = NSURL(string: "37.8267,-122.423", relativeToURL: baseURL)
let sharedSession = NSURLSession.sharedSession()
let downloadTask: NSURLSessionDownloadTask =
sharedSession.downloadTaskWithURL(forecastURL!,
completionHandler: { (location: NSURL!, response: NSURLResponse!, error: NSError!) -> Void in
if (error == nil) {
let dataObject = NSData(contentsOfURL: location)
let weatherDictionary: NSDictionary = NSJSONSerialization.dataWithJSONObject(dataObject!, options: nil, error: nil) as! NSDictionary
}
})
downloadTask.resume()
Chris Upjohn Pasan Premaratne Christian Andersson Adam Moore

Anthony Munoz
1,935 Pointslet dataObject = NSData(contentsOfURL: location!) unwrap NSJSONSerialization.JSONObjectWithData not NSJSONSerialization.dataWithJSONObject
Rolando Cruz
2,995 PointsRolando Cruz
2,995 PointsChris Upjohn Pasan Premaratne Christian Andersson Adam Moore Amit Bijlani