gpt4 book ai didi

swift - 在表格 View 单元格中键入时键盘会覆盖 TextView

转载 作者:行者123 更新时间:2023-11-30 11:23:37 25 4
gpt4 key购买 nike

我的表格 View 单元格中有一个 TextView ,我使用

self.tableView.beginUpdates()
self.tableView.endUpdates()

根据用户输入的文本量更新我的单元格高度,并且一切都运行良好,除了键盘覆盖我的 TextView 区域(如果我的 TextView 位于键盘下方)。我已经尝试过

 NSNotification.Name.UIKeyboardWillShow

将我的表格 View 向上推并认为这是解决方案,但问题仍然存在,在这种情况下它确实没有任何帮助。有没有办法让打字时文字始终位于键盘上方?谢谢大家帮助我,下面是我如何更新表格 View 单元格高度

//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()
}

keyboard cover text

cell height function works very well

最佳答案

在调用 UIResponder.keyboardWillShowNotification 时执行的方法内,获取键盘的大小并将其添加到 tableView 及其滚动指示器插图中。

 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
}

关于swift - 在表格 View 单元格中键入时键盘会覆盖 TextView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51001702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com