Skip to content

Instantly share code, notes, and snippets.

@ramiresnas
Created August 10, 2018 12:24
Show Gist options
  • Select an option

  • Save ramiresnas/c296313d531172faed092059a055b317 to your computer and use it in GitHub Desktop.

Select an option

Save ramiresnas/c296313d531172faed092059a055b317 to your computer and use it in GitHub Desktop.
UserDefaults
let defaults = UserDefaults.standard
defaults.set(1.5, forKey: "velocidade")
//depois você pode ler essa informação usando
let velocidade = defaults.float(forKey: "velocidade")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment