这是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中未检测到点击手势所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)