美文网首页
IOS 手势拦截

IOS 手势拦截

作者: leonardni | 来源:发表于2017-05-16 11:50 被阅读43次
    -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch{
        CGPoint point = [touch locationInView:self];
        BOOL inside = [self.collectionView pointInside:point withEvent:UIEventTypeTouches];
        if(inside && _isShow){
            return NO;
        }
        return YES;
    }
    

    相关文章

      网友评论

          本文标题:IOS 手势拦截

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