Skip to content

Instantly share code, notes, and snippets.

@richardwei6
Created November 5, 2020 07:21
Show Gist options
  • Save richardwei6/453e5ed5ee0f376571720fe0ccd213c4 to your computer and use it in GitHub Desktop.
Save richardwei6/453e5ed5ee0f376571720fe0ccd213c4 to your computer and use it in GitHub Desktop.
func resetAllSettingsDefaults() {
let defaults = UserDefaults.standard
let dictionary = defaults.dictionaryRepresentation()
dictionary.keys.forEach { key in
defaults.removeObject(forKey: key)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment