Re: core data issues iOS 4.0.2

2010-08-31 Thread Damien Cooke
Fritz, Thanks for the pointer, I had over looked this document in my own search. The issue was that I had deleted the record ok, but just a few lines further down I had referenced one of the fields of the deleted record... (only idiots do that! ) So the clue was from the document you pointed

Re: core data issues iOS 4.0.2

2010-08-30 Thread Fritz Anderson
Googling "CoreData could not fulfill a fault" yields as the very first result; it took me three seconds to do this. You don't give enough information to say for sure, but can you tel

core data issues iOS 4.0.2

2010-08-30 Thread Damien Cooke
Hi all, I have been deleting objects with code similar to this. NSManagedObjectContext *context = [[self fetchedResultsController] managedObjectContext]; [context deleteObject:videoEntity]; [managedObjectContext processPendingChanges]; //commit th