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 triallaurentennyson
4,524 PointsHelp 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)
1 Answer
Ronald Hunter
Courses Plus Student 17,851 PointsTake 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)
laurentennyson
4,524 PointsYes, Ronald your code worked. Thanks, I see where I had the spaces.
david hackney
2,422 PointsThanks Ronald i was stuck with that also and it worked for me,
Thanks
Chris Bernardi
3,994 PointsChris Bernardi
3,994 PointsLauren Tennyson: Can you give the specific error you are receiving?