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