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

iOS Object-Oriented Swift Value vs Reference Types Final Challenge

Paul Denlinger
Paul Denlinger
2,380 Points

Where to set default for wheels, doors?

Not quite sure about where to set the default for the wheels, doors. Help!

Vehicle.swift
class Vehicle {
    let wheels: Int
    let doors: Int

    // Designated initializer
    init(wheels:Int, doors:Int){
      self.wheels = wheels
      self.doors = doors

    }
}

class Car: Vehicle {
    // A car must default to 4 wheels and 4 doors
    var auto = Car(wheels = 4, doors = 4)
    init(){
      // call super.init
      super.init()
    }
}

1 Answer

Jhoan Arango
Jhoan Arango
14,575 Points

Hey Paul, you are creating an instance of car inside the class. First delete the โ€œvar autoโ€ instance, and then on the super.init() add the default values. It should look something like this.

super.init(wheels: 4, doors: 4)

remember, with the super.init you are calling the initializer from the super class โ€œVehicleโ€. All you are doing now is adding default values to it. Please let me know if it helps.

Paul Denlinger
Paul Denlinger
2,380 Points

Thank you for the input; that worked.

I need to practice this more in order to get better, but I think that I get the general idea.

Thanks again!

Jhoan Arango
Jhoan Arango
14,575 Points

No problem... Thatโ€™s what I try to do everyday, practice and practice. Itโ€™s the only way to get better.