• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 使用自动布局的 UITextView 动态高度 - 每个新行的文本截断顶行

[复制链接]
菜鸟教程小白 发表于 2022-12-13 07:22:05 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个扩展的“消息工具栏”,它的工作方式与消息应用程序消息栏类似,用户可以在其中键入文本,并且对于每一行新的文本,整个栏的高度都应该增加(直到它达到预定义的最大高度)。 我使用自动布局设置它,并且不断增长的消息栏工作得很好。但问题是,由于某种原因,每次我在消息栏的 UITextView 中找到新的一行文本时,顶行会因为移到 UITextView 框架的上方而略微中断。

这是我在用户输入消息栏时的代码:

func messageToolbarDidUpdateText(messageToolbar: MessageToolbar, textView: UITextView)
{
    // Expand message bar to fit text view
    let newTextViewHeight = max(self.messageToolbarMinHeight - messageToolbar.textViewTopPadding - messageToolbar.textViewBottomPadding, min(self.messageToolbarMaxHeight - messageToolbar.textViewTopPadding - messageToolbar.textViewBottomPadding, textView.contentSize.height)) // Check that message bar doesn't exceed the limits
    textView.frame.size = CGSizeMake(textView.frame.width, newTextViewHeight)

    let newMessageBarHeight = max(self.messageToolbarMinHeight, min(self.messageToolbarMaxHeight, textView.contentSize.height + messageToolbar.textViewTopPadding + messageToolbar.textViewBottomPadding)) // Check that message bar doesn't exceed the limits
    self.messageToolbar.heightConstraint.constant = newMessageBarHeight

    self.view.updateConstraintsIfNeeded()
}

这里是我的意思的截图。请注意第一行文本之前 textview 顶部的第一张图像中的间隙。这预计会一直存在,直到消息栏达到最大高度并开始要求在 textview 中滚动新行。但是由于某种原因,即使消息栏仍未达到最大高度,新行也会导致文本的顶行被截断。它也不仅仅是滚动偏移量,因为 TextView 在消息栏达到其最大高度之前不允许滚动: enter image description here enter image description here



Best Answer-推荐答案


哦,很抱歉发布了 necroposting,但我遇到了同样的问题,终于找到了解决方案。

所以基本上你需要:

if textView.contentSize.height <= textView.height {
    textView.scrollRangeToVisible(NSMakeRange(0, 0))
}

如果您没有达到最大工具栏高度,它会将文本滚动到正确的位置。如果你到达它,那么你的 TextView 内容大小高于它的高度,你不应该有这个问题。

编辑:归功于 https://stackoverflow.com/a/19047464/1316040提到 HPGrowingTextView。 https://github.com/HansPinckaers/GrowingTextView对于...嗯,现有的 https://github.com/KennethTsang/GrowingTextView对于实际的代码行 scrollRangeToVisible

关于ios - 使用自动布局的 UITextView 动态高度 - 每个新行的文本截断顶行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30406876/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap