UIGestureRecongnizer 手势拦截

Posted qigemingnan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIGestureRecongnizer 手势拦截相关的知识,希望对你有一定的参考价值。

在一个scrollview添加了一个tap的手势事件,然后在scrollview上添加了几个Button,在ios6,ios7 中两个点击事件相安无事,但在ios5中按钮却无法点击,究其原因是因为在ios5中tap手势拦截了button的点击事件,解决方法如下:

1.给手势设置代理

2.在下面的方法中,如果是UIButton的点击就阻止手势的点击事件。

// called before touchesBegan:withEvent: is called on the gesture recognizer for a new touch. return NO to prevent the gesture recognizer from seeing this touch

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch;

{

   if([touch.view iskindOfclass [UIButton class]]

{

   return No;

}

 return YES;

}

 

不过目前应该不必用到这个了,因为iOS6现在都被淘汰了,更不用说iOS5啦

以上是关于UIGestureRecongnizer 手势拦截的主要内容,如果未能解决你的问题,请参考以下文章

基础手势识别

如何拦截垂直滑动手势

我的 pageviewcontroller 手势是不是被拦截?

iOS:从顶视图到底视图拦截点击手势事件

手势事件

UITableView:自定义手势使其不再滚动