Skip to content

Instantly share code, notes, and snippets.

@bestiosdeveloper
Last active May 19, 2020 14:24
Show Gist options
  • Save bestiosdeveloper/1a47bed8af15d5dd87f811dc72a1d995 to your computer and use it in GitHub Desktop.
Save bestiosdeveloper/1a47bed8af15d5dd87f811dc72a1d995 to your computer and use it in GitHub Desktop.
class User {
var age: Int = 0 {
didSet { print("didSet for age") }
}
var name: String = "" {
didSet { print(oldValue) }
}
}
let user = User()
// This will not call the getter to fetch the oldValue
user.age = 15
// This will call the getter to fetch the oldValue
user.name = "name"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment