ios – 在UITableViewCell中未检测到点击手势

ios – 在UITableViewCell中未检测到点击手势,第1张

概述我正试图在UITableViewCell内的UI ImageView上检测到一个轻击手势. 这是cellForRowAtIndexPath中代码的一部分: let cell1 : cellTableViewCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as! cellTableViewCell t 我正试图在UItableVIEwCell内的UI ImageVIEw上检测到一个轻击手势.

这是cellForRowAtIndexPath中代码的一部分:

let cell1 : celltableVIEwCell = self.tableVIEw.dequeueReusableCellWithIDentifIEr("cell") as! celltableVIEwCell        tableVIEw.allowsSelection = false        cell1.profileimg.userInteractionEnabled = true        let tappedOnImage = UIGestureRecognizer(target: cell1,action: "tappedOnImage:")        cell1.profileimg.tag = indexPath.row        cell1.profileimg.addGestureRecognizer(tappedOnImage)

这是处理手势的功能:

func tappedOnImage(sender:UITapGestureRecognizer){    print("hey")}

但是,当我点击任何建议时,什么也没发生?

解决方法 如果没有看到更多代码,很难说出错了,但试试这个:

let tappedOnImage = UITapGestureRecognizer(target: self,action: "tappedOnImage:")
总结

以上是内存溢出为你收集整理的ios – 在UITableViewCell中未检测到点击手势全部内容,希望文章能够帮你解决ios – 在UITableViewCell中未检测到点击手势所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存