I\'m working on some code that uses an NSOperation
to import data. I\'d like for the user to be able to undo the NSManagedObject
instances that are cre
One option may be to make your import thread persistent. Even when the thread is finished importing, it goes into an idle loop state. This way your threaded ManagedObjectContext is persisted in the proper thread. Then when the user wishes to undo a change, send a message to the thread to use the undomanager.