You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 17, 2018. It is now read-only.
Create an NSManagedObject with the following properties : firstname = 'John', lastname = 'Doe'
Save context
CloudCore try to sync this new Object but if fails for whatever reason (iCloud not available, limit exceeded...). So we don't have the corresponding CKRecord in CloudKit.
Later, we update the same NSManagedObject : firstname = 'Jane', lastname = 'Doe'
CloudCore create a CKRecord with only updated properties : firstname = 'Jane'
So on CloudKit, we will never have the property set during NSManagedObject creation, here lastname = 'Doe'.
I'm not sure how it could be fixed apart by always updating all properties.