Created
August 5, 2019 09:21
-
-
Save reyandrey/b678d28669a3575fea2b8a03567e70fc to your computer and use it in GitHub Desktop.
NSCoder extension for CodingKey
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
extension NSCoder { | |
func encode(_ object: Any?, forKey key: CodingKey) { | |
encode(object, forKey: key.stringValue) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment