我有一个 UIButton,它的 superView 有触摸事件。当按钮开始拖动时,我想通过按钮并继续使用它的 superView 的 touchesMoved 功能,这就是我的问题。
我尝试自定义按钮,并使用如下所示的触摸事件;
@implementation MyButton
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
[self.nextResponder touchesMoved:touches withEvent:event];
}
@end
但它不起作用,触摸没有转到它的 superView 的 touchesMoved 功能.. 任何人都可以帮助我吗?