我在tableview单元格中有一个文本视图,并且使用了
self.tableView.beginUpdates()
self.tableView.endUpdates()
根据用户键入的文本量来更新单元格高度,并且如果我的文本视图位于键盘下方,则除了键盘盖住了我的文本视图区域之外,其他所有功能都可以很好地工作。我尝试过
NSNotification.Name.UIKeyboardWillShow
向上推我的表视图并认为这是解决方案,但问题仍然存在,在这种情况下,它根本没有帮助。有没有一种方法可以在输入时将文本始终保持在键盘上方?谢谢大家的帮助,下面是我如何更新表格视图单元格高度
//set textView delegate in custom cell and use textView didchange func
func textViewDidChange(_ textView: UITextView) {
textDidChanges?()
}
//then in my cellForRowAt
cell.textDidChanges = {
self.tableView.beginUpdates()
self.tableView.endUpdates()
}
答案 0 :(得分:0)
在调用UIResponder.keyboardWillShowNotification
时要执行的方法中,
获取键盘的大小,并将其添加到tableView及其滚动指示符Insets中。
NotificationCenter.default.addObserver(self, selector: #selector(VC.keyboardWillShow), name: UIResponder.keyboardWillShowNotification, object: nil)
func keyboardWillShow(_ notification: Notification) {
guard let info = notification.userInfo,
let keyboardFrameRect = info[UIResponder.keyboardFrameBeginUserInfoKey] as? NSValue
else { return }
let keyboardRect = keyboardFrameRect.cgRectValue
let contentInset = UIEdgeInsets(top: 0, left: 0, bottom: keyboardRect.height, right: 0)
tableView.contentInset = contentInset
tableView.scrollIndicatorInsets = contentInset
}