gpt4 book ai didi

iOS Swift3 TextView 行在错误的位置

转载 作者:搜寻专家 更新时间:2023-11-01 07:14:42 24 4
gpt4 key购买 nike

我有一个 textView,用作聊天消息的输入字段。如果文本多于一行无法容纳,我希望它展开。

func textViewDidChange(_ textView: UITextView) {
self.textViewHeight.constant = textView.contentSize.height
}

如果用户在 textView 中输入内容,我会以编程方式设置高度限制。

enter image description here <- 对于一个衬里,它看起来不错。

enter image description here <- 按下回车键后,它会隐藏起来。

enter image description here <- 第二个输入再次显示它。

我在这里做错了什么?我尝试重新创建 whatsapp/imessage 的外观,其中不会发生这种隐藏。

最佳答案

这是因为您在错误的委托(delegate)函数中更改了大小。完成编辑后调用委托(delegate) textViewDidChange(调用 resignFirstResponder)。

你应该把你的代码放在这个函数中来改变高度:

optional func textView(_ textView: UITextView, 
shouldChangeTextIn range: NSRange,
replacementText text: String) -> Bool

因此这将在您键入时更改 UITextView 的高度,而不是在您完成键入之后。

关于iOS Swift3 TextView 行在错误的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42824115/

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