2

I'm using NSDocument but I would like to disable the undo manager.

How can I do it?

Colas
  • 3,473
  • 4
  • 29
  • 68
  • By reading the documentation: https://developer.apple.com/library/ios/documentation/cocoa/Conceptual/UndoArchitecture/UndoArchitecture.html#//apple_ref/doc/uid/10000010i – cacau Feb 27 '14 at 11:57

1 Answers1

5

- (BOOL)isUndoRegistrationEnabled

Return Value

YES if registration is enabled; otherwise, NO.

and:

- (void)disableUndoRegistration

Disables the recording of undo operations, whether by registerUndoWithTarget:selector:object: or by invocation-based undo.

l'L'l
  • 44,951
  • 10
  • 95
  • 146