Created
August 10, 2018 12:24
-
-
Save ramiresnas/c296313d531172faed092059a055b317 to your computer and use it in GitHub Desktop.
UserDefaults
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
| 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