xcode – UITapGestureRecognizer与didSelectRowAtIndexPath冲突

xcode – UITapGestureRecognizer与didSelectRowAtIndexPath冲突,第1张

概述在我问这个之前我尝试其他解决方案,但它没有用 这是我的代码 override func viewDidLoad() { super.viewDidLoad() let tapGesture = UITapGestureRecognizer(target: self, action: "didTouchBoard:") view.addGestureRecognizer(t 在我问这个之前我尝试其他解决方案,但它没有用

这是我的代码

overrIDe func vIEwDIDLoad() {    super.vIEwDIDLoad()    let tapGesture = UITapGestureRecognizer(target: self,action: "dIDtouchBoard:")    vIEw.addGestureRecognizer(tapGesture)    tapGesture.cancelstouchesInVIEw = true}

当我点击任何地方它会隐藏键盘,如果存在,但如果我点击tablevIEwcell或collectionvIEwcell,它将不会点击

我试试这个tapGesture.cancelstouchesInVIEw,但不行

解决方法 如果希望表视图接收触摸,则更改tapGesture.cancelstouchesInVIEw

tapGesture.cancelstouchesInVIEw = false
总结

以上是内存溢出为你收集整理的xcode – UITapGestureRecognizer与didSelectRowAtIndexPath冲突全部内容,希望文章能够帮你解决xcode – UITapGestureRecognizer与didSelectRowAtIndexPath冲突所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1016073.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存