Core Data -existingObjectWithID:error: causes error 133000

后端 未结 5 1245
暗喜
暗喜 2021-01-30 21:11

My app uses Core Data (with some help of Magical Record) and is rather heavily multithreaded using NSOperation.

Of course I am very careful to only pass aro

5条回答
  •  滥情空心
    2021-01-30 21:33

    I encountered this issue, even though the objectID was not temporary. This was because I foolishly forgot to set the parent on the child MOC.

    childManagedObjectContext.parent = managedObjectContext

提交回复
热议问题