码迷,mamicode.com
首页 > 其他好文 > 详细

超出superView的subview响应方法

时间:2018-09-01 19:17:26      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:uiview   hit   poi   事件   swift   bounds   pre   let   contain   

view的响应事件传递 在superView里面用  hitTest(_ point: CGPoint, with event: UIEvent?) 方法,找出事件响应区域内的point 传递给subVIew即可



public override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
 var view = super.hitTest(point, with: event)
        if view == nil {
            for subView in self.subviews {
                let tp = subView.convert(point, from: self)
                if subView.bounds.contains(tp) {
                    view = subView
                }
            }
        }
        return view

  

    }
    
   

  

超出superView的subview响应方法

标签:uiview   hit   poi   事件   swift   bounds   pre   let   contain   

原文地址:https://www.cnblogs.com/KingQiangzi/p/9571147.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!