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 trialLei zheng
7,990 PointsLet's assume that the courseURL we created earlier returns some JSON data from Treehouse API. Create a data object to ca
I try to find out why. I type the code on my xcode, and download the version from teacher pasan. My xcode report
"value of optional type "NSURL?" not unwrapped; did you mean to use ! or ??
so I added ! to forecastURL.
now the data is ok. but this coding challenge. I can never pass it.
import Foundation
let treehouseBaseURL = NSURL(string: "https://api.teamtreehouse.com/")
let courseURL = NSURL(string: "/course/\(courseID)", relativeToURL: treehouseBaseURL)
let courseData = NSData.dataWithContentsOfURL(courseURL!,options:nil, error:nil)
let //courseData = NSData (contentsOfURL: courseURL!)
1 Answer
Frank Ogwaro
Courses Plus Student 7,941 PointsHere is what I used to pass it looks like NSData.dataWithContentsOfURL was deprecated in Xcode 6.1. The third constant should be...
let courseData = NSData(contentsOfURL: courseURL, options: nil, error: nil)
then delete this line
let //courseData = NSData (contentsOfURL: courseURL!)