问题描述
我目前有一个包含按钮的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 (将#修改为@)