使用 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 【问题描述】:

我需要识别用户点击TableCellimage

如何通过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】:

您可以使用UIGestureRecognizerview 属性。

注册点击手势:

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 中的选择器的主要内容,如果未能解决你的问题,请参考以下文章

使用UITapGestureRecognizer传递参数

在 Swift 中使用 UITapGestureRecognizer 中的参数

使用 UITapGestureRecognizer

使用 UITapGestureRecognizer 时不会调用 textFieldShouldEndEditing

UIlabel 中的 UITapGestureRecognizer 错误

使用 UITapGestureRecognizer 根据 iPhone 中的手指触摸位置添加新视图