Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is a CoreData forceFetch required after a delete on the iPad but not the iPhone?

When the following code is run on the iPhone (ios 3.1) the count of fetched objects after the delete is one less than before the delete. But on the iPad (ios 3.2) the count remains the same. This inconsistency was causing a crash on the iPad because elsewhere in the code, soon after the delete, fetchedObjects is called and the calling code, trusting the count, attempts access to the just-deleted object's properties, resulting in a NSObjectInaccessibleException error (see below). A fix has been to use that commented-out call to performFetch, which when executed makes the second call to fetchObjects yield the same result as on the iPhone without it. My question is: Why is the iPad producing different results than the iPhone? This is the second of these differences that I've discovered and posted recently.

-(NSError*)deleteObject:(NSManagedObject*)mo;
{
NSLog(@"\n\nNum objects in store before delete: %i\n\n",
      [[self.fetchedResultsController fetchedObjects] count]);

    [self.managedObjectContext deleteObject:mo];

    // Save the context.
    NSError *error = nil;
    if (![self.managedObjectContext save:&error]) {
    }

//  [self.fetchedResultsController performFetch:&error];  // force a fetch

NSLog(@"\n\nNum objects in store after delete (and save): %i\n\n", 
      [[self.fetchedResultsController fetchedObjects] count]);

    return error;
}

(The full NSObjectInaccessibleException is: "Terminating app due to uncaught exception 'NSObjectInaccessibleException', reason: 'CoreData could not fulfill a fault for '0x1dcf90

like image 490
Alyoshak Avatar asked May 18 '10 16:05

Alyoshak


1 Answers

Adding the following code to your FRC delegate will resolve this.

- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller { }

Thanks to BenT at the Apple Dev forum for the answer (see my comments above). I asked him for an explanation of the fix and he said, "The iPad is using iPhoneOS 3.2 while the iPhones 3.1. There were a number of improvements to the NSFetchedResultsController in 3.2, but unfortunately, a side effect on the delegates' requirements to actually implement one (any one) of the delegate methods to get active change tracking." https://devforums.apple.com/message/221471#221471 (Hope this helps someone. The faq said it was ok to answer your own question in such cases)

like image 119
Alyoshak Avatar answered Oct 20 '22 05:10

Alyoshak