Skip to content

Instantly share code, notes, and snippets.

@RealEmmettS
Created January 14, 2022 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RealEmmettS/68a2db966ff94e3113d02418ccf75baf to your computer and use it in GitHub Desktop.
Save RealEmmettS/68a2db966ff94e3113d02418ccf75baf to your computer and use it in GitHub Desktop.
//Store a value in UserDefaults
let defaults = UserDefaults.standard
defaults.set(25, forKey: "Age")
//Retrieve a value from UserDefaults
let age = defaults.integer(forKey: "Age")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment