gpt4 book ai didi

ios - 将 UITapGestureRecognizer 添加到 tableViewCell 上的 subview

转载 作者:行者123 更新时间:2023-11-30 12:20:32 25 4
gpt4 key购买 nike

大家,我正在尝试使用该代码将手势识别器添加到位于 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")
}

最佳答案

如果您的 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
}

然后在你的处理函数中,你可以通过读取这个标签来获取正确的索引路径

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

关于ios - 将 UITapGestureRecognizer 添加到 tableViewCell 上的 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44848744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com