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.

Carl Smith
8,185 PointsNot sure how to create an instance with this
I've tried many different variations and get errors where I cannot pass the Location into business. So I tried this ode which doesn't make much since but I don't get any errors. However, I'm confused on how to proceed.
struct Location {
let latitude: Double
let longitude: Double
class Business {
let name: String
let location: Location
init(name: String, location: Location) {
self.name; "my Business"
self.location = Location(latitude: 8.9, longitude: 9.9)
}
}
2 Answers

jcorum
71,816 PointsGreat start. But the initializer needs to assign the location passed in to the location stored property, and you give them actual values by passing those in when you create an instance:
class Business {
let name: String
let location: Location
init(name: String, location: Location) {
self.name = name
self.location = location
}
}
let someBusiness = Business(name: "Business", location: Location(latitude: 8.9, longitude: 9.9))

Carl Smith
8,185 PointsAhhhhh ok, thank you!
Carl Smith
8,185 PointsCarl Smith
8,185 PointsThis is not working for me, I'm still getting an error where "location" can't be used because it cannot find an initializer?