点击 UITableViewCell 类中的 UIImageView 时如何打开新屏幕?
Posted
技术标签:
【中文标题】点击 UITableViewCell 类中的 UIImageView 时如何打开新屏幕?【英文标题】:How to open a new screen when tapping on a UIImageView that is in a UITableViewCell class? 【发布时间】:2017-01-18 21:50:48 【问题描述】:我的 TableViewCell 在它自己的名为 VersionCellVC 的类中。
我的 UIImageView 完全覆盖了单元格;所以用户别无选择,只能点击 UIImageView,而不是 TableViewCell。
我想要执行 segue 或呈现 vc,并且我已经创建了手势识别器及其调用的函数。但是,由于我在 UITableViewCell 的自定义子类中,系统告诉我不允许使用 present(vc:animate:complete)
和 prepare(forSegue:..:))
函数,因为它们不是 UITableViewCell 类的成员。
如何在不将 UIImageView 更改为 UIButton 的情况下解决此问题?
【问题讨论】:
【参考方案1】:像这样的东西(在包含 tableview 的 viewcontroller 中)怎么样?
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)")
【讨论】:
以上是关于点击 UITableViewCell 类中的 UIImageView 时如何打开新屏幕?的主要内容,如果未能解决你的问题,请参考以下文章
iOS - 无法访问 UITableViewCell 类中的 UITextView 委托
从UITableViewCell类中获取UITextView中的hashtag后尝试进行segue
在 UITableViewCell 中无法点击 UIButton
自定义 uitableviewcell 中的 Uibuttons