Skip to content

PFIncrementalStore issue #56

Description

@loicgriffie

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]) {

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions