gpt4 book ai didi

ios - 点击 UITableViewCell 类中的 UIImageView 时如何打开新屏幕?

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

我的 TableViewCell 位于它自己的类 VersionCellVC 中。

我的 UIImageView 完全覆盖了单元格;因此用户别无选择,只能点击 UIImageView,而不是 TableViewCell。

我想要执行 segue 或呈现 vc,并且我已经创建了手势识别器及其调用的函数。但是,由于我位于 UITableViewCell 的自定义子类中,系统告诉我不允许使用 present(vc:animate:complete)prepare(forSegue :..:)) 函数,因为它们不是 UITableViewCell 类的成员。

如何在不将 UIImageView 更改为 UIButton 的情况下解决此问题?

最佳答案

像这样的东西(在包含表格 View 的 View Controller 中)怎么样?

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell", for: indexPath) as! CustomCell

cell.myImageView?.isUserInteractionEnabled = true
cell.myImageView?.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(imageViewTapped(imageView:))))

return cell
}

func imageViewTapped(imageView: UIImageView) {
if let indexPath = tableView.indexPathForRow(at: imageView.convert(.zero, to: tableView)) {
print("user tapped imageview at indexPath \(indexPath)")
}
}

关于ios - 点击 UITableViewCell 类中的 UIImageView 时如何打开新屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41730094/

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