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

iOS Build a Weather App with Swift (Retired) Pulling Data From the Web Fetching JSON Data

Lei zheng
Lei zheng
7,990 Points

Let'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.

students_code.swift
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

Here 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!)