Skip to content

Instantly share code, notes, and snippets.

@reyandrey
Created August 5, 2019 09:21
Show Gist options
  • Save reyandrey/b678d28669a3575fea2b8a03567e70fc to your computer and use it in GitHub Desktop.
Save reyandrey/b678d28669a3575fea2b8a03567e70fc to your computer and use it in GitHub Desktop.
NSCoder extension for CodingKey
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