Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Last active March 17, 2021 20:10
Show Gist options
  • Save petrosDemetrakopoulos/c392428945a3b782ab95c145edec109d to your computer and use it in GitHub Desktop.
Save petrosDemetrakopoulos/c392428945a3b782ab95c145edec109d to your computer and use it in GitHub Desktop.
Core Foundation CFGetRetainCount
class Car {
var wheels: Int = 0
init(wheels: Int) {
self.wheels = wheels
}
}
let myCar = Car(wheels: 4)
print(CFGetRetainCount(myCar))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment