Skip to content

Instantly share code, notes, and snippets.

@ldct
Created December 26, 2022 10:13
Show Gist options
  • Save ldct/2bd3be5a81097a65f70a130f312d9c7b to your computer and use it in GitHub Desktop.
Save ldct/2bd3be5a81097a65f70a130f312d9c7b to your computer and use it in GitHub Desktop.
child
class SuperClass {
public var customInt: Int? {
didSet {
print("super")
}
}
}
class ChildClass: SuperClass {
override public var customInt: Int? {
didSet {
print("child")
}
}
}
var obj: ChildClass
obj = ChildClass()
obj.customInt = 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment