美文网首页
iOS 父View添加点击手势,CollectionView d

iOS 父View添加点击手势,CollectionView d

作者: d4d5907268a9 | 来源:发表于2022-06-23 18:08 被阅读0次
extension BottomActionSheetView :UIGestureRecognizerDelegate {
    func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
        guard let view = touch.view else {
            return false
        }
        if view.isDescendant(of: self.cancelButton) {
            return false
        }
        if view.isDescendant(of: self.conversation_collectionView) {
            return false
        }
        if view.isDescendant(of: self.action_collectionView) {
            return false
        }
        
        return true
    }
}

相关文章

网友评论

      本文标题:iOS 父View添加点击手势,CollectionView d

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