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 trialJonathan Guerrero
Front End Web Development Techdegree Graduate 18,245 PointsHelp I can't figure out why my code is not working.
let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)") let foreCastURL = NSURL(string: "37.8267,-122.423", relativeToURL: baseURL) let weatherData = NSData(contentsOfURL: foreCastURL!, options: nil, error: nil) println(weatherData)
3 Answers
Stone Preston
42,016 Pointsput a / after the api key
let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)/")
Jonathan Guerrero
Front End Web Development Techdegree Graduate 18,245 PointsI don't see any error in the console but on the debugger it says "nil".
My code would not get the information it needs from developer.forecast.io and the free calls is still 1000.
Jonathan Guerrero
Front End Web Development Techdegree Graduate 18,245 PointsThanks. That worked for me!
Stone Preston
42,016 Pointsawesome glad that got it working
Stone Preston
42,016 PointsStone Preston
42,016 Pointswhat is not working? are you getting an error in your console? an exception being thrown?