在uitextview上编辑文本时,我上一个uitableviewcell的异常行为问题

时间:2019-07-19 22:01:56

标签: swift uitableview

我正在尝试修复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

感谢您的帮助!

0 个答案:

没有答案