在UIScrollView上获取UIResponder实例metods。苹果手机

时间:2011-12-22 22:23:02

标签: iphone uiview uiscrollview touch-event uiresponder

在我正在处理的当前项目上,在其中一个视图上,我有一个UIView,并且在UIScrollView之上,它是从界面构建器构建的。

我已实现了以下UIResponder实例方法:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

但只有当触摸事件发生在UIScrollView未涵盖的区域时,控件才会使用此方法。

我如何才能在UIScrollView上抓住触摸事件?

感谢名单

1 个答案:

答案 0 :(得分:0)

您可以创建UIScrollView的子类并覆盖:

- (BOOL)touchesShouldBegin:(NSSet *)touches withEvent:(UIEvent *)event inContentView:(UIView *)view

你必须要小心,不要干扰滚动手势等。