We are using the - (NSDictionary *)syncedPropertiesDictionary:(NSDictionary *)propertiesByName to only sync a few selected attributes with dropbox. This works great when syncing from client to dropbox.
However when you try resyncing from dropbox, the method in NSManagedObject+ParcelKit.m
- (void)pk_setPropertiesWithRecord:(DBRecord *)record syncAttributeName:(NSString *)syncAttributeName
does not use the keys from syncedPropertiesDictionary to sync. It would be nice if the setPropertiesWithRecord method can use the syncedPropertiesDictionary so that we can sync up partial attributes/relationships from the dictionary
We are using the
- (NSDictionary *)syncedPropertiesDictionary:(NSDictionary *)propertiesByNameto only sync a few selected attributes with dropbox. This works great when syncing from client to dropbox.However when you try resyncing from dropbox, the method in NSManagedObject+ParcelKit.m
- (void)pk_setPropertiesWithRecord:(DBRecord *)record syncAttributeName:(NSString *)syncAttributeNamedoes not use the keys from syncedPropertiesDictionary to sync. It would be nice if the setPropertiesWithRecord method can use the syncedPropertiesDictionary so that we can sync up partial attributes/relationships from the dictionary