-
-
Save mrugeshtank/1afb2c18e4652b19036bc6146a046f4a to your computer and use it in GitHub Desktop.
This file contains 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
extension UserDefaults { | |
subscript<T>(key: String) -> T? { | |
get { | |
return value(forKey: key) as? T | |
} | |
set { | |
set(newValue, forKey: key) | |
} | |
} | |
subscript<T: RawRepresentable>(key: String) -> T? { | |
get { | |
if let rawValue = value(forKey: key) as? T.RawValue { | |
return T(rawValue: rawValue) | |
} | |
return nil | |
} | |
set { | |
set(newValue?.rawValue, forKey: key) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment