Sorry if this has been already addressed (as always), but I couldn't find a clear answer so...
Circa OS X 10.7 (old stuff I know), a core data app that I was developing for the Mac had "automatic" undo support. This was a core data feature. Changes to the managed object context were simply undoable with the default "undo" menu without any custom line of code.
This no longer appear to work on this old Xcode project. The undo menu doesn't do anything and is greyed out (same app, same code).
To check, I created the most simple code data app projet (still Obj-C), and yep, it doesn't support automatic undo. The undo menu is always greyed out and when I send canUndo
messages to the MOC's undo manager, it returns NO
even after I make changes to managed objects.
Is automatic undo no longer a core data feature? Am I already too old? (You don't have to answer this one.)
Thanks.