美文网首页笔记篇
透过view 完成点击下层的事件

透过view 完成点击下层的事件

作者: 失忆的程序员 | 来源:发表于2020-08-06 10:24 被阅读0次

    - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
    {
        UIView *hitView = [super hitTest:point withEvent:event];
        if (hitView == self) {
            return nil;
        }
        return hitView;
    }

    相关文章

      网友评论

        本文标题:透过view 完成点击下层的事件

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