Skip to content

Instantly share code, notes, and snippets.

@OscarSwanros
Created December 8, 2016 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OscarSwanros/3109e33ec035a5f5ef2452fcc63e5b6d to your computer and use it in GitHub Desktop.
Save OscarSwanros/3109e33ec035a5f5ef2452fcc63e5b6d to your computer and use it in GitHub Desktop.
class MyController: UIViewController {
static var activeInstances: Int = 0
init() {
super.init()
MyController.activeInstances += 1
}
dealloc {
MyController.activeInstances -= 1
}
}
MyController.activeInstances // #=> Numero de instancias en determinado momento
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment