将 UITapGestureRecognizer 添加到 tableViewCell 上的子视图

Posted

技术标签:

【中文标题】将 UITapGestureRecognizer 添加到 tableViewCell 上的子视图【英文标题】:Adding UITapGestureRecognizer to subview on tableViewCell 【发布时间】:2017-06-30 14:23:12 【问题描述】:

大家,我正在尝试使用该代码将手势识别器添加到位于 TableViewCell 上的 StackView,但它不起作用:

@IBOutlet var categoryStackView: UIStackView! 
    didSet 
        let tapGesture = UITapGestureRecognizer(target: self, action: #selector(categoryStackViewTapped))
        categoryStackView.addGestureRecognizer(tapGesture)
    

它不起作用,我检查了 StackView 并启用了用户交互

@objc func categoryStackViewTapped(sender: UITapGestureRecognizer) 
    print("Here we are")

【问题讨论】:

你检查过你在didSet里面的代码被调用了吗? 您可以编辑您的帖子以包含您的功能categoryStackViewTapped 吗?这将有助于调试您的问题。另外,您是否在函数中添加了 print 语句来检查它是否被调用? @FangmingNing 是的,如果我像 self.addGestureRecognizer(tapGesture) 这样的代码,那么它适用于所有单元格 @TheoStrauss 添加 太棒了。看起来它会被调用。该打印语句不打印吗?另外,看看你的其他 cmets,你说它“适用于所有细胞”。你在使用 tableviewcontroller 吗?如果是这样,那么如果你对一个示例单元格做某事,它将影响所有其他单元格。 【参考方案1】:

如果您的tableView 中有多个stackView,我建议您使用另一种方法。将当前索引行作为标记添加到您的 ,然后将单击操作添加到您的按钮处理函数。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 
    let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") as! Cell
    cell.stackView.tag = indexPath.row
    cell.stackView.addTarget(self, action:#selector(categoryStackViewTapped(sender:)), for: .touchUpInside)

    return cell

然后在你的handler函数中,通过读取这个标签就可以得到正确的索引路径

func categoryStackViewTapped(sender: UIStackView) 
    let myIndexPath = IndexPath(row: sender.tag, section: 0)
    //... other code here

【讨论】:

以上是关于将 UITapGestureRecognizer 添加到 tableViewCell 上的子视图的主要内容,如果未能解决你的问题,请参考以下文章

将 NSDictionary 作为参数传递给 UITapGestureRecognizer

将 UITapGestureRecognizer 添加到 UIControl

将 UITapGestureRecognizer 连接到 UIView

将 UITapGestureRecognizer 触摸传递到底层 UITableViewCell

将 UITapGestureRecognizer 添加到 XIB

将 UITapGestureRecognizer 添加到 UILabel 的特定部分的最佳方法是啥?