Swift:从 UITapGestureRecognizer 中排除子视图

问题描述

我有一个包含许多子视图的 UIView。我想添加一个 UITapGestureRecognizer 但从特定子视图中排除结果行为。这是我当前的设置:

class MainViewController {

    init(frame: .zero)

    internal lazy var notifications: NotificationsContainer = {
        let notifications = NotificationsContainer() // subclasses UIView
        notifications.tag = 1
        return notifications
    }()
    }

现在我想要一个在整个视图上的点击识别器,不包括这个。所以我想我可以做一些像将这个添加到 init:

let tap = UITapGestureRecognizer(target: self,action: #selector(tapGestureHandler(_:)))
view.addGestureRecognizer(tap)

然后这个方法

@objc
func tapGestureHandler(_ sender: UITapGestureRecognizer){
    if sender.view?.tag == 1 {
        return
    } else {
        // do something
    }
}

但是当我中断手势时,它只会返回 0 作为标签。我如何才能在点击此特定视图时不触发手势?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)