Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Tariq Qazzaz
1,660 Pointsmy initialization is not working .
hi guys .. i followed the steps in the last lesson to create explicit initialization
but its not working
struct Location {
let latitude: Double
let longitude: Double
}
class Business {
let name : String
let location : Location
init(name: String , latitude: Double , longitude: Double){
self.name = name
self.location = (latitude : latitude , longitude : longitude)
}
}
let someBusiness = Business(name : "treehouse" , latitude : 10.0 , longitude : 20.0)
1 Answer

Mitch Little
11,870 PointsHi Tariq,
Remember location is of type Location. This means that in this code challenge you are essentially creating two instances in 'someBusiness' to initialise both of the classes.
struct Location {
let latitude: Double
let longitude: Double
}
class Business {
let name: String
let location: Location
init(name: String, location: Location) {
self.name = name
self.location = location
}
}
let someBusiness = Business(name: "London", location: Location(latitude: 51.5074, longitude: 0.1278))
You could also create a separate instance of Location and assign this constant to location:
let someLocation = Location(latitude: 51.5057, longitude: 0.1278)
let someBusiness = Business(name: "London", location: someLocation)
I hope this helps.
All the best,
Mitch