I am working on an application that will perform a search against an online service and generate many Result objects. A Result object is an NSManagedObject, initialized as requi
Create Result objects that are not NSManagedObject subclasses. When the user picks one, create a single managed instance and save that.
You should use a different context for each object. Using a separate managed object context allows you to work as follows. When the user selects its favorite object, you just discard the contexts related to the remaining result objects. No need to merge changes etc. There is basically a tradeoff. You end up managing (creating/discarding) several contexts, but then you accomplish your goal easily. Otherwise, you can still do this using just a single context. However, you have to explicitly insert or delete each object as shown in the following code snippets.
Try this. Only for the favorite object you want to save, do the following:
[managedObjectContext insertObject:theFavorite];
For each of the other result objects do this instead:
[managedObjectContext deleteObject:aResult];
then save as usual
NSError *error = nil
if (![managedObjectContext save:&error]) {
// Handle error
}
This will save ONLY your selected, favorite object.
I prefer to use a NIL context and have a base domain model class to handle recursively adding objects to a valid context when I want to persist them. It works really nicely (and cleanly!)... code available here... Temporary Core Data