我有一个视图,我想使用户能够在使用UIButton
选项卡后在其上进行绘图,我已经使用UIPanGestureRecognizer
进行了此操作,在UIPanGestureRecognizer
触摸后添加了一个UIButton
该视图,但是问题是我可以在完成绘制后删除此UIPanGestureRecognizer
并重新触摸UIButton
??
最佳答案
UIView有一个称为
- (void)removeGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
或者,您可以使用方法删除其回调,以暂时禁用UIGestureRecognizer
- (void)removeTarget:(id)target action:(SEL)action
关于iphone - 将UIPanGestureRecognizer添加到 View 后,将其删除,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7873636/