Skip to content

Instantly share code, notes, and snippets.

@benjohnde
Last active December 13, 2017 07:50
Show Gist options
  • Select an option

  • Save benjohnde/6a59c56e9a189384cb32b19c4c62f0a4 to your computer and use it in GitHub Desktop.

Select an option

Save benjohnde/6a59c56e9a189384cb32b19c4c62f0a4 to your computer and use it in GitHub Desktop.
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