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) Concurrency Writing Concurrent Networking Code

Rajiv Barton
Rajiv Barton
12,051 Points

Response nil

I have tried all options from other users who asked questions regarding this video and no matter what Im still getting a nil response.

let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)/")

        let forecastURL = NSURL(string: "39.968612,-82.993032", relativeToURL: baseURL)

        let sharedSession = NSURLSession.sharedSession()

        let downloadTask: NSURLSessionDownloadTask = sharedSession.downloadTaskWithURL(forecastURL!, completionHandler: { (location: NSURL!, response: NSURLResponse!, error: NSError!) -> Void in
            println(response)
        })


        downloadTask.resume()
Rajiv Barton
Rajiv Barton
12,051 Points

I should also note Ive tried unwrapping baseURL in forecastURL which still resulted in a nil response :(

1 Answer

Michael Daw
Michael Daw
6,440 Points

I've copied your code and it seems to be working for me. Is if possible your api key is not correct?

Rajiv Barton
Rajiv Barton
12,051 Points

It seems to have worked for me today as well! Thanks for the quick reply. Maybe Xcode just needed reset? who knows.