Skip to content

Instantly share code, notes, and snippets.

@insidegui
Created March 5, 2017 20:12
Show Gist options
  • Save insidegui/7c862fa6226d8ecac72a4f137f699c46 to your computer and use it in GitHub Desktop.
Save insidegui/7c862fa6226d8ecac72a4f137f699c46 to your computer and use it in GitHub Desktop.
extension CKRecord {
subscript(key: MovieKey) -> Any? {
get {
return self[key.rawValue]
}
set {
self[key.rawValue] = newValue as? CKRecordValue
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment