GO FURTHER, FASTER: Try the Swift Career Accelerator today! >>

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 all new Paywall Editor allow you to remotely configure your paywall view without any code changes or app updates.

Click to save your free spot now

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

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

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.