使用 UITapGestureRecognizer、UIImageView 和 UITableViewCell 将参数传递给 Swift 中的选择器
Posted
技术标签:
【中文标题】使用 UITapGestureRecognizer、UIImageView 和 UITableViewCell 将参数传递给 Swift 中的选择器【英文标题】:Passing parameters to a Selector in Swift using UITapGestureRecognizer, UIImageView and UITableViewCell 【发布时间】:2016-03-30 11:31:58 【问题描述】:我需要识别用户点击TableCell
的image
。
如何通过TAG
?
class CustomCell: UITableViewCell
@IBOutlet weak var imgPost1: UIImageView!
override func awakeFromNib()
super.awakeFromNib()
// Initialization code
imgPost1.tag=1
let tap = UITapGestureRecognizer(target: self, action: #selector(CustomCell.tappedMe))
imgPost1.addGestureRecognizer(tap)
imgPost1.userInteractionEnabled = true
func tappedMe(xTag:Int)
print(xTag)
override func setSelected(selected: Bool, animated: Bool)
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
【问题讨论】:
【参考方案1】:您可以使用UIGestureRecognizer
的view
属性。
注册点击手势:
let tap = UITapGestureRecognizer(target: self, action: "tappedMe:")
imgPost1.addGestureRecognizer(tap)
imgPost1.userInteractionEnabled = true
现在定义 tappedMe 方法
func tappedMe(sender: UITapGestureRecognizer)
print(sender.view?.tag)
PS:不要忘记为图片设置标签
【讨论】:
如何设置图片标签?yourImageView.tag = yourTag
对于上述特定问题,请在 cellForRowAtIndexPath
方法中设置。以上是关于使用 UITapGestureRecognizer、UIImageView 和 UITableViewCell 将参数传递给 Swift 中的选择器的主要内容,如果未能解决你的问题,请参考以下文章
在 Swift 中使用 UITapGestureRecognizer 中的参数
使用 UITapGestureRecognizer 时不会调用 textFieldShouldEndEditing