gpt4 book ai didi

ios - 如何禁用多个手势识别器之一?

转载 作者:搜寻专家 更新时间:2023-10-31 21:45:58 24 4
gpt4 key购买 nike

我正在尝试禁用已添加到 View 的 3 个手势识别器中的 1 个,有人知道正确的代码是什么吗?

这是我目前所拥有的:

// the gesture recognizer i'm trying to disable

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


// the code to disable it

let allGRs = [currentView.gestureRecognizers]

for g in allGRs {

if let g as? UITapGestureRecognizer {
g.isEnabled = false
}

}

谢谢!

最佳答案

您应该将名称属性分配给您的手势识别器。

tap.name = "myTapGesture"

稍后您可以循环浏览 recozniers 并仅禁用您想要的那个。

for aRecognizer in view.gestureRecognizers {
if let name = aRecognizer.name {
if name == "myTapGesture" {
aRecognizer.isEnabled = false
}
}
}

关于ios - 如何禁用多个手势识别器之一?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54509324/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com