美文网首页iOS开发那些事
【iOS】超出父视图的子视图如何响应事件?

【iOS】超出父视图的子视图如何响应事件?

作者: lever_xu | 来源:发表于2017-07-06 14:17 被阅读267次

    在父视图添加如下代码。其思路如下:

    • 历父视图的所有子视图
    • 判断触发事件的点是否在子视图的bounds内
    • 如果在,返回这个子视图
    - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
        UIView *view = [super hitTest:point withEvent:event];
        if (view == nil) {
            for (UIView *subView in self.subviews) {
                CGPoint p = [subView convertPoint:point fromView:self];
                if (CGRectContainsPoint(subView.bounds, p)) {
                    view = subView;
                }
            }
        }
        return view;
    }
    

    相关文章

      网友评论

        本文标题:【iOS】超出父视图的子视图如何响应事件?

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