I have two entities, each displaying on its own UITableView section.

I've enabled editing to allow the user to delete rows by swiping to the right. This works fine for the first entity, but when I try to delete an object in the second entity, I get this error:

An NSManagedObjectContext cannot delete objects in other contexts

I get what the error says, but I can't see how it applies here. I use a retained reference to my context to create, fetch, and delete all objects from the database, so I'm sure there's only the one context. I'm also not using multiple threads. Any idea what could be happening?

link|improve this question

0% accept rate
feedback

1 Answer

Is the context that you fetched the NSManagedObject from the same instance as the context you're using to delete the NSManagedObject? If not, you need to either:

  • Have a shared reference to the same NSManagedObjectContext so that you delete the object from the same context that you created or fetched it from. If you're not using multiple threads, then you should only need to call [[NSManagedObjectContext alloc] init] once ever in your code.

or

  • If you have to use two different instances of NSManagedObjectContext, then get the objectID from the NSManagedObject you got from the first context, so that you can later call:

    [context deleteObject:[context objectWithID:aObjectID]];

    The NSManagedObjectID is the same between contexts, but the NSManagedObject itself is not.

link|improve this answer
I'm using the managedObjectContext ivar in the app delegate (put there by xcode when I created the project). The code that's causing the error references uses [[[UIApplication sharedApplication] delegate] managedObjectContext]. There's only that one instance used throughout the app. – cetcet May 3 '11 at 5:44
Just fixed it. It was a typo - nothing to do with the context. Sorry, and thanks for the help! – cetcet May 3 '11 at 6:07
1  
For anyone else coming across this in a Google search, you MAY receive this error if you are passing an invalid object or other mistyped code to [managedObjectContext deleteObject]; I was passing an NSNumber* on accident and it was giving me this error instead of telling me I should be passing an NSManagedObject*. – Riley Dutton Oct 25 '11 at 10:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.