UITextView 滚动文本的问题

发布于 2024-11-17 11:23:56 字数 222 浏览 4 评论 0原文

在此处输入图像描述

我在上面的屏幕截图中使用 UITextView。但问题是,当我尝试滚动文本时,它会超出 UITextView 的屏幕。我尝试过减少 TextView 框架,但这样做会减少 UITextVIew 框架...

我如何保持相同的 UITextView 高度并且我的文本也不会超出框架?

enter image description here

I am using UITextView in above screenshot. But problem is when I am trying to scroll text its getting out of screen of UITextView. I have tried by reducing TextView frame but doing that its reducing UITextVIew Frame...

How can i maintain same UITextView height and my text also not go out of the frame ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒绊 2024-11-24 11:23:56

我会尝试更改表视图内容大小:

[textView setContentSize:CGSizeMake(width, height)];

设置宽度和高度,以便整个文本视图适合该文本视图。
还要检查文本视图内是否启用了滚动;如果不是,则设置它:

textView.scrollEnabled = YES;

希望有帮助! ;D

I would try to change the table view content size:

[textView setContentSize:CGSizeMake(width, height)];

Set width and height so that the whole text view fits inside that text view.
Also check that the scroll is enabled inside of the text view; if it is not then set it:

textView.scrollEnabled = YES;

Hope it helps! ;D

倾城花音 2024-11-24 11:23:56

您是否尝试将 UITextView 的 isScrollEnabled 设置为 TRUE ?

Did you try setting isScrollEnabled of UITextView to TRUE?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文