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
Frank Ogwaro
Courses Plus Student 7,941 PointsNetworking in iOS Use of unresolved identifier 'baseURL'
let baseURL = NSURL(string: "https://api.forecast.io/forecast/\(apiKey)/")
let forecastURl = NSURL(string: "37.8267,-122.423", relativeToURL: baseURl)
On the second line "let forcastURL" Xcode tells me "use of unresolved identifier 'baseURL". I've looked at the documentation but I can't figure out what has changed.
3 Answers
agreatdaytocode
24,757 PointsLooks like you have "baseURl" should be "baseURL"
kjvswift93
13,515 Pointsyou need to change baseURl in the second line to baseURL in order to match your first declaration. Just a simple typo.
Frank Ogwaro
Courses Plus Student 7,941 PointsIn Xcode it looked like it was an L my bad.