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 Making a Network Call

Help I keep getting errors which I try to run my code. Can anyone help

let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)/") let forecastURL = NSURL(string: "39.042193,-94.589035",relativeToURL: baseURL)

    let weatherData = NSData(
        contentsOfURL: forecastURL! ,
        options: nil,
        error: nil)

Lauren Tennyson: Can you give the specific error you are receiving?

1 Answer

Take out the spaces in your strings:

This is the code you have now:

let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)/") let forecastURL = NSURL(string: "39.042193,-94.589035",relativeToURL: baseURL)

and the code that works:

let baseURL = NSURL(string:"https://api.forecast.io/forecast/\(apiKey)/") let forecastURL = NSURL(string:"39.042193,-94.589035",relativeToURL: baseURL)

Yes, Ronald your code worked. Thanks, I see where I had the spaces.

Thanks Ronald i was stuck with that also and it worked for me,

Thanks