Disable undo for creation/deletion of NSManagedObject - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T00:33:22Zhttp://stackoverflow.com/feeds/question/780262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/780262/disable-undo-for-creation-deletion-of-nsmanagedobject2Disable undo for creation/deletion of NSManagedObjectMatt Ball2009-04-23T04:00:58Z2009-04-23T07:41:54Z
<p>In my Core Data model, I've got a relationship called <code>listItems</code> which links to several <code>listItem</code> entities, each with a <code>stringValue</code> attribute. I've created a control which is essentially a list of <code>NSTextFields</code>, one for each list item. The control is bound to <code>listItems</code> properly, and I've set it up so that pressing the return key creates a new field directly under the currently-edited one and changes the focus to the new field. So, essentially, to add a new item, the user presses Return.</p>
<p>Likewise, if the user ends editing and the currently-edited field is empty, the field is removed (as in, empty fields only appear during "edit mode", so to speak). This works pretty well. Basically, in my <code>listItem</code> NSManagedObject subclass, I do the following:</p>
<pre><code>// Don't allow nil values
if (!value && [[self.recipe ingredients] count] > 1) {
for (EAIngredientRef *ingredient in [self.recipe ingredients]) {
if ([[ingredient sortIndex] integerValue] > [[self sortIndex] integerValue]) {
[ingredient setSortIndex:[NSNumber numberWithInteger:([[ingredient sortIndex] integerValue]-1)]];
}
}
[[self managedObjectContext] deleteObject:self];
return;
}
// Code to handle if it is a real value
</code></pre>
<p>The problem I am encountering is that each time a row is deleted this way, it registers with the undoManager. Thus, if I edit a row, press Return (which creates a new row), and click away to end editing, the row disappears. However, if I then undo, the empty field reappears. My goal is to have delete operations involving empty fields be ignored by the undoManager.</p>
<p>How would I go about this? I've tried using <code>[[[self managedObjectContext] undoManager] disableUndoRegistration]</code> and the associated <code>enableUndoRegistration</code> in several spots (such as <code>-didTurnIntoFault</code>, but I suspect that the undo registration might be happening prior to that method)</p>
http://stackoverflow.com/questions/780262/disable-undo-for-creation-deletion-of-nsmanagedobject/780697#7806973Answer by Mike Abdullah for Disable undo for creation/deletion of NSManagedObjectMike Abdullah2009-04-23T07:41:54Z2009-04-23T07:41:54Z<p>If you dive more deeply into the Core Data docs, you'll find this tidbit hidden away:</p>
<pre><code>[[self managedObjectContext] processPendingChanges];
[[[self managedObjectContext] undoManager] disableUndoRegistration];
// Do your work
[[self managedObjectContext] processPendingChanges];
[[[self managedObjectContext] undoManager] enableUndoRegistration];
</code></pre>
<p>Changes are not registered with the undo manager normally until the end of the event loop, and so were being registered <em>after</em> you'd turned undo registration back on. The above forces it to occur when you want.</p>