Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app that uses the shake gesture for something else besides undo. I want to use NSUndoManager and all the examples and how-tos say I have to put the following line in my applicationDidFinishLaunching method.

application.applicationSupportsShakeToEdit = YES;

Is it possible to use NSUndoManager without supporting the shake to undo gesture?

share|improve this question

1 Answer

up vote 4 down vote accepted

Sure. Create an Undo button, then:

- (IBAction)undoButtonPressed {
    [myUndoManager undo];
}
share|improve this answer
So obvious :-S Thanks! – Rafael Vega Aug 13 '10 at 20:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.