hitTest 监听超出父控件视图范围内的子控件的点击事件

有时候需要监听或拦截超出了父控件的子控件的点击事件。

例如:自定义的 navigationBar ,在 navigationBar 视图下方添加了自定义的控件,但是此控件仍属于 navigationBar 的子控件。

open override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
       
    if clipsToBounds || isHidden || alpha == 0 {
        return nil
    }

    for subview in subviews.reversed() {
        let subviewPoint = subview.convert(point, from: self)
        if let view subview.hitTest(subviewPoint, with: event) {
            return view
        }
    }

    return nil
}

你可能感兴趣的:(hitTest 监听超出父控件视图范围内的子控件的点击事件)