美文网首页
UI 元素点击没反应

UI 元素点击没反应

作者: 阿朱先生 | 来源:发表于2017-10-01 09:48 被阅读0次

    1: View [ CollectionView ] 的点击事件

    如果View添加了 Gesture, 要想 CollectionView 的Cell的点击事件被处理,需要设置 gesture.cancelsTouchesInView = false

    open var cancelsTouchesInView: Bool 
    // default is YES. causes touchesCancelled:withEvent: or pressesCancelled:withEvent: to be sent to the view for all touches or presses recognized as part of this gesture immediately before the action method is called.
    

    2: View1 [ View2 ] 的点击事件

    View1 包含 View2,但是View2的点击事件就是没有处理(不管把View2 设置为 UIButton 或者 UIImageView 都不行),最后是 [Debug View Hierarchy]才发现 View2 不在 View1 的 frame 内。所以事件没有传递。

    相关文章

      网友评论

          本文标题:UI 元素点击没反应

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