Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我将 ManagedObject 插入上下文之后,我想稍后但在保存上下文之前获取它(我会在插入所有对象后保存)。如果上下文之前没有保存,那么稍后使用有关这些对象的获取来查询上下文似乎不会返回任何内容。有没有办法只保存到最后?(我想我可以将我的对象保存在数组或字典中并查询,但我认为 coredata 会为我做这个)
试试这个:
[myFetchRequest setIncludesPendingChanges:YES];
从文档中:
设置是否在执行 fetch 时匹配托管对象上下文中当前未保存的更改。