Is there a way to be notified that a previously saved core data document has been loaded?
Asked
Active
Viewed 56 times
0
-
Core Data persistent stores only get loaded on demand. They're loaded when you load them. What are you actually trying to do? – Tom Harrington Sep 01 '13 at 15:54
-
I have an `NSTableView` that is filled using core data. I also have an `NSPredicateEditor` that needs to be refreshed after loading a document. I need to know when I need to do that, and one of those moments is after I load a saved document (XML, binary or SQL). – Carelinkz Sep 01 '13 at 16:28