在Cocoa中使用NSUndoManager能夠很方便的完成撤銷操做。NSUndoManager會記錄下修改、撤銷操做的消息。這個機制使用兩個NSInvocation對象棧。ios
NSInvocation會把消息(選擇器和接受者及參數)包裝成一個對象,這個對象就是NSInvocation的實例。當一個對象收到它不理解的消息時,消息發送機制會在報出錯誤前檢查該對象是否實現了forwardInvocation這個方法。若是實現了,就會將消息打包成NSInvocation對象,而後調用forwardInvocation方法。app
1) NSUndoManager工做原理spa
當進行操做時,控制器會添加一個該操做的逆操做的invocation到Undo棧中。當進行Undo操做時,Undo操做的逆操做會倍添加到Redo棧中,就這樣利用Undo和Redo兩個堆棧巧妙的實現撤銷操做。code
這裏須要注意的是,堆棧中存放的都是NSInvocation實例。對象
2)示例
假設在咱們的程序中有walkLeft以及這個方法的逆方法walkRight,咱們能夠這樣來實現撤銷功能。
- (void) walkLeft
{
position = position + 10;
[[undoManager prepareWithInvocationTarget:self] walkRight];
[self showTheChangesToThePostion];
}
prepareWithInvocationTarget:方法記錄了target並返回UndoManager,而後UndoManager重載了forwardInvocation方法,也就將walkRight方法的Invocation添加到undo棧中了。
- (void) walkRight
{
position = position - 10;
[[undoManager prepareWithInvocationTarget:self] walkLeft];
[self showTheChangesToThePostion];get
}it
UndoManager還能夠設置撤銷菜單動做的名稱:
[undoManager setActionName:@"Insert"];io