HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iOS:截取从顶视图到底视图的轻击手势事件大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的视图控制器中,我向self.view添加一个UITapGestureRecognizer.我在self.view上添加一个小视图.当我点击小视图时,我不想在self.view中触发UITapGestureRecognizer事件.这是我的代码,它不起作用.

- (void)viewDidLoad {
    [super viewDidLoad];

    UITapGestureRecognizer *_tapOnVideoRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@SELEctor(toggleControlsVisiblE)];

    [self.view addGestureRecognizer:_tapOnVideoRecognizer];

    UIView *smallView=[[UIView alloc] initWithFrame:CGRectMake(0,200,200)];
    smallView.BACkgroundColor=[UIColor redColor];
    smallView.exclusiveTouch=YES;
    smallView.userInteractionEnabled=YES;

    [self.view addSubview:smallView];
    }

    - (void)toggleControlsVisible
    {
        NSLog(@"tapped");
    }

当我点击小视图时,它仍会在self.view中触发点击事件. Xcode记录“轻拍”.如何拦截smallView到self.view的手势事件?

解决方法

像这样实现UIGestureRecognizer委托方法shouldReceiveTouch.如果触摸位置在topView内,请勿接触.

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
    CGPoint LOCATIOn = [touch LOCATIOnInView:self.view];

    if (CGRectContainsPoint(self.topView.frame,LOCATIOn)) {
        return NO;
    }
   return YES;
}

大佬总结

以上是大佬教程为你收集整理的iOS:截取从顶视图到底视图的轻击手势事件全部内容,希望文章能够帮你解决iOS:截取从顶视图到底视图的轻击手势事件所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。