美文网首页
iOS View上添加手势,防止点击View上替他视图响应手势

iOS View上添加手势,防止点击View上替他视图响应手势

作者: Yokihr | 来源:发表于2018-03-19 15:49 被阅读55次

    • 在开发过程中,我们可能会遇到这个问题. 当我们给一个view添加了手势,但是我们又不想点击view上面的视图也触发手势.如下图:

    image

    上代码,先创建两个view,并且给bigView添加手势:

        self.bigView.backgroundColor = [UIColor redColor];
        UITapGestureRecognizer *recognizer = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(bigMap:)];
        recognizer.delegate = self;
        [self.bigView addGestureRecognizer:recognizer];
        self.view addSubview:self.bigView];
        self.smallView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 50, 50)];
        self.smallView.backgroundColor = [UIColor yellowColor];
        [self.bigView addSubview:self.smallView];
    

    我们在红色view上添加了手势,但是又不想点击黄色view也触发.其实这里用到UITapGestureRecognizer的一个代理方法,我不用多说,大家一看就明白怎么回事了.这是就解决了防止点击黄色view也触发的问题了

     
        if ([touch.view isDescendantOfView:self.smallView]) {
            return NO;
        }
        return YES;
    }
    

    相关文章

      网友评论

          本文标题:iOS View上添加手势,防止点击View上替他视图响应手势

          本文链接:https://www.haomeiwen.com/subject/widpqftx.html