I just installed PFIncremental store from cocoa pods and there is an issue in the following method
- (void)updateBackingObject:(NSManagedObject *)backingObject
withAttributeAndRelationshipValuesFromManagedObject:(NSManagedObject *)managedObject
PFIncrementalStore/PFIncrementalStore.m:970:48: No visible @interface for 'NSString' declares the selector 'isTemporaryID'
I checked the same method in the example project and the following lines
if (![[relationshipValue objectID] isTemporaryID]) {
should be replaced with
NSManagedObject *relatedObject = (NSManagedObject *)relationshipValue;
if (![[relatedObject objectID] isTemporaryID]) {
I just installed PFIncremental store from cocoa pods and there is an issue in the following method
withAttributeAndRelationshipValuesFromManagedObject:(NSManagedObject *)managedObject
PFIncrementalStore/PFIncrementalStore.m:970:48: No visible @interface for 'NSString' declares the selector 'isTemporaryID'
I checked the same method in the example project and the following lines
if (![[relationshipValue objectID] isTemporaryID]) {
should be replaced with
NSManagedObject *relatedObject = (NSManagedObject *)relationshipValue;
if (![[relatedObject objectID] isTemporaryID]) {