Created
August 18, 2016 23:46
-
-
Save efremidze/1cdbe611cdbb26c1d3686f54e175026d to your computer and use it in GitHub Desktop.
optional variable assignment with default value
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
var UUID: String? { | |
return keychain[Constants.Keychain.UUID.description] ?? { | |
let string = UIDevice.currentDevice().identifierForVendor?.UUIDString | |
keychain[Constants.Keychain.UUID.description] = string | |
return string | |
}() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment