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 trialTejas Pulavarti
Courses Plus Student 654 PointsHow do I add name to the init method?
I am supposed to add a name init to the class?
// Enter your code below
struct Location {
let latitude: Double
let longitude: Double
}
class Business {
let name: String
let location: Location
init(name: String, location: Location) {
let someBuisness = Location.init(latitude: 7.9, longitude: 4.7)
}
}
2 Answers
jon kelson
5,149 Pointshi Tejas,
you need to write self.name etc under the init method as below. then call the class Business (not the Location) outside of the curly braces. Let me know if this works ok as It works in the playground.
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: "Bristol", location: Location(latitude: 2.7, longitude: 69.2))
Tejas Pulavarti
Courses Plus Student 654 Pointsthank you and it works.