Created
February 11, 2019 14:45
-
-
Save nafferro/2da661df6026653112552940542fbb2f to your computer and use it in GitHub Desktop.
For getting all keys & values from 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
| for (key, value) in UserDefaults.standard.dictionaryRepresentation() { | |
| print("\(key) = \(value) \n") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment