0

If I add entities to a moc and I execute a fetch request on that moc before its document gets a chance to save, will my fetch contain the newly added entities? (I'm unsure how to test this out because of the auto-save feature)

4

1 に答える 1

0

UIDocument「自動保存」というときに使っていると思います。そうでない場合、「自動保存」はありません (Apple テンプレート コードを使用し、アプリ デリゲートが終了前に保存する場合を除く)。

フェッチ リクエストを作成するときに、プロパティを使用して保存されていないアイテムを含めるかどうかを選択できますincludesPendingChanges。デフォルトでは YES に設定されているため、デフォルトでは保存されていないアイテムが結果に表示されます。

于 2013-06-11T22:39:43.110 に答える