我正在尝试修复tableview的不良行为。在应用程序内部,当我编辑textview(位于最后一个单元格上)时,出现“跳转”问题。我在图片上附加了以下错误。
let cell = tableView.dequeueReusableCell(withIdentifier: resumeCellIdentifier, for: indexPath) as! ResumeCell
cell.textChanged { [weak tableView] (newText: String) in
DispatchQueue.main.async {
tableView?.beginUpdates()
tableView?.endUpdates()
}
}
return cell
}
https://miro.medium.com/max/978/1*6QBxvgdvOSmcln3CYGCMew.gif
感谢您的帮助!