Skip to content

Instantly share code, notes, and snippets.

@arashkashi
Created March 15, 2018 17:48
Show Gist options
  • Save arashkashi/e27cd11316a6c6079089b703fd3ce78f to your computer and use it in GitHub Desktop.
Save arashkashi/e27cd11316a6c6079089b703fd3ce78f to your computer and use it in GitHub Desktop.
Unique Id for any object
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