如何发送UIButton的拖动事件

时间:2012-07-29 02:55:08

标签: iphone events uibutton touch uiresponder


我有一个UIButton,它的superView有触摸事件。 当按钮开始拖动时,我想通过按钮并继续使用superView的touchesMoved函数,这就是我的问题所在。

我尝试自定义按钮,并使用下面的触摸事件;

@implementation MyButton

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    [self.nextResponder touchesMoved:touches withEvent:event]; 
}


@end

但它不起作用,触摸没有去它的superView的touchesMoved函数.. 有人可以帮帮我吗?

0 个答案:

没有答案