How do I create many temporary objects and then save only one using Core Data?

后端 未结 3 1320
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-14 02:20

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

3条回答
  •  终归单人心
    2021-02-14 02:56

    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.

提交回复
热议问题