我想使用 NSUndoManager 撤消并重做绘图应用程序中的笔触和更改。我正在使用UIGraphicsGetImagefromCurrentImageContext()将图像存储到可变数组中。
下面的代码给出了一个想法:
- (void) performUndoRedo:(BOOL) undo
{
if (undo)
{
[undoManager undo];
}
else
{
[undoManager redo];
}
NSLog(@"layerArray:%@", layerArray);
[self drawImage:[layerArray lastObject]];
}
- (void) redo:(id) object
{
[layerArray addObject:object];
[[undoManager prepareWithInvocationTarget:self] undo:object];
[undoManager setActionName:@"drawredo"];
// NSLog(@"layerArray IN REDO:%@", layerArray);
}
- (void) undo:(id) object
{
[[undoManager prepareWithInvocationTarget:self] redo:object];
[undoManager setActionName:@"drawundo"];
[layerArray removeObject:object];
// NSLog(@"layerArray IN UNDO:%@", layerArray);
}
- (void) touchesEnded:(NSSet *) touches withEvent:(UIEvent *) event
{
UIGraphicsBeginImageContext(self.bounds.size);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *layerImage = UIGraphicsGetImageFromCurrentImageContext();
[layerArray addObject:layerImage];
[self undo:layerImage];
UIGraphicsEndImageContext();
NSLog(@"%@", layerArray);
}
如何以及在什么操作点清除 layerArray,并重置撤消堆栈?提前致谢
似乎您可以使用每个类中的方法进行清除:
-
layerArray
是一个NSMutableArray
- 来自
removeAllObjects
的文档清空数组的所有元素。
- 来自
-
undoManager
是一个NSUndoManagaer
:- 来自
removeAllActions
的文档:清除撤消和重做堆栈并重新启用接收器。
- 来自