Last active
December 13, 2017 07:50
-
-
Save benjohnde/6a59c56e9a189384cb32b19c4c62f0a4 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
| extension UserDefaults { | |
| var onboardingCompleted: Bool { | |
| get { return bool(forKey: #function) } | |
| set { set(newValue, forKey: #function) } | |
| } | |
| print(UserDefaults.standard.onboardingCompleted) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment