TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

Day 12 3. How to add initializers for classes. Troubles with super.init

Forums > 100 Days of SwiftUI

Hi, everyone! Got stucked with next issue.

class Vehicle {
    let isElectric: Bool

    init(isElectric: Bool) {
        self.isElectric = isElectric
    }
}

class Car: Vehicle {
    let isConvertible: Bool

    init(isConvertible: Bool) {
        self.isConvertible = isConvertible
        super.init(isElectric: isElectric)
    }
}

When I'm trying to use super.init(isElectric: isElectric), it throws 'self' used in property access 'isElectric' before 'super.init' call, and I have no clue why, I literally just repeated Paul's code. Any tips how to solve this issue would be appreciated. Thank you!

2      

I literally just repeated Paul's code

Check again...

2      

Hacking with Swift is sponsored by RevenueCat.

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.