如何解决触发tableviewcel中的performSegue不再在iOS14中工作
我目前有一个包含按钮的tableview单元格。单击后,它将在主vc上调用一个函数并执行segue。但是,由于升级到iOS 14,因此会产生错误。之前没有任何问题,效果很好。我也尝试过使用异步调度,但是并不能解决问题。
返回的新错误是:
Exception = (NSException *) "*** __boundsFail: index 2 beyond bounds [0..1]"
代码如下:
class MainVC: UIViewController,UITableViewDelegate,UITableViewDataSource {
func showNextVC() {
performSegue(withIdentifier: "MainVC->NextVC",sender: self)
}
func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell",for: indexPath) as! TableviewCell
cell.vc = self
return cell
}
}
class TableviewCell: UITableViewCell {
weak var vc: MainVC?
@IBAction func touchupinsideButton(_ sender: UIButton) {
vc?.showNextVC()
}
}
单击后,表行没有任何变化。这是一个非常简单的动作。有什么想法吗?!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。