gpt4 book ai didi

ios - 不断增长的文本输入 View - swift 示例

转载 作者:搜寻专家 更新时间:2023-10-31 08:08:34 24 4
gpt4 key购买 nike

我在过去两天尝试实现一个随着用户输入而增长的 UITextView。就像 whats-app 一样。

我在这里找到了有关 textViewDidChange 的示例,但这并没有真正起作用,因为它不仅需要增长,还需要向上移动。由于 TextView 位于同时包含发送按钮的 View 中,因此它们都必须向上增长。

还发现了一些其他的框架。

https://github.com/slackhq/SlackTextViewController - 看起来真的很酷,可以做我需要的一切,但我没有发现它运行 swift 例子。提供的示例工程我运行不了。

https://github.com/MatejBalantic/MBAutoGrowingTextView - 无法真正让它向上工作。

我正在寻找一些关于如何使用 SWIFT 实现它的帮助,或者可能是在 swift 上运行的 SLACK 示例项目,而不是 github 上的示例项目。或者可能是一些代码显示如何将 UITextView 链接到 Slack 类并使其在 viewController 类中工作。

最佳答案

这是我目前用于我的 inputAccessoryView 的内容。

我有一个工具栏,它包含 UITextView 和发送按钮并监听 textViewDidChange 事件,如下所示:

func textViewDidChange(_ textView: UITextView) {
let oldHeight = textView.height
let maxHeight: CGFloat = 100.0 //beyond this value the textView will scroll
var newHeight = min(textView.sizeThatFits(CGSize(width: textView.frame.width, height: CGFloat.greatestFiniteMagnitude)).height, maxHeight)
newHeight = ceil(newHeight)
if newHeight != oldHeight {
textView.frame.size.height = max(newHeight, barHeight)
updateHeight(height: newHeight)
}
}

此处的目标是设置新的 textView 高度。然后我也更新工具栏高度

public func updateToolBarHeight(height: CGFloat) {
for constraint in constraints {
if constraint.firstAttribute == NSLayoutAttribute.height && constraint.firstItem as! NSObject == self {
constraint.constant = max(barHeight, height)
}
}
setNeedsUpdateConstraints()
sendButton.origin.y = max(0, height - barHeight)
}

barHeight 是我的默认工具栏高度(设置为 50.0)。并且我还更新了我的 sendButton 位置以留在工具栏的底部。

关于ios - 不断增长的文本输入 View - swift 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32637794/

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