Created
December 8, 2016 18:15
-
-
Save OscarSwanros/3109e33ec035a5f5ef2452fcc63e5b6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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