Created
March 15, 2018 17:48
-
-
Save arashkashi/e27cd11316a6c6079089b703fd3ce78f to your computer and use it in GitHub Desktop.
Unique Id for any object
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
extension UIViewController { | |
var uniqueId: String { | |
return "\(ObjectIdentifier(self).hashValue)" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment