0

I've created an NSUndoManager for the Managed Object Context of Core Data, like this:

NSUndoManager *undoManager = [[NSUndoManager alloc] init];
[undoManager setLevelsOfUndo:10];
[managedObjectContext setUndoManager:undoManager];
[undoManager release];

In the app delegate where the didFinishLaunching method is called, I did this:

application.applicationSupportsShakeToEdit = YES; 

For some reason, I never get that undo/redo panel when I make a shake gesture in iPhone Simulator (from the menu). Must I enable undo/redo somewhere else, maybe in the Info.plist file?

dontWatchMyProfile
  • 45,440
  • 50
  • 177
  • 260

1 Answers1

1

As lukya pointed out, you already asked this question back in March.

Marcus S. Zarra
  • 46,571
  • 9
  • 101
  • 182