UITextView 只是水平滚动帮助

发布于 2024-11-14 15:16:58 字数 209 浏览 0 评论 0原文

我有一个 UITextView ,我想水平显示它的文本,我的 UITextView 有一个静态宽度,

[[UITextView alloc] initWithFrame:CGRectMake(0, 0, 161, 23)];

所以当 UITextView 的文本长度大于 23 时,我需要 UITextView 水平滚动,请帮助我...

I have a UITextView , i want show its' text in horizontal, my UITextView has a static width

[[UITextView alloc] initWithFrame:CGRectMake(0, 0, 161, 23)];

so when the length of UITextView's text is greater than 23, i need UITextView horizontal scrolling , please help me...

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

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

发布评论

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

评论(4

千柳 2024-11-21 15:16:58

把这个代码
初始化后

[txt setContentOffset:CGPointMake(give_high_value_here_than_content, y)];

祝你好运

put this code
after initializing

[txt setContentOffset:CGPointMake(give_high_value_here_than_content, y)];

Good luck

阳光下慵懒的猫 2024-11-21 15:16:58
- (void)viewDidLoad {
    // We restrict the horizontal scrolling here.
    self.textView.contentSize = self.textView.frame.size;
}

实现此文本视图委托方法。

现在,当输入的字符大于 23 时,我们将文本视图的内容大小设置为更高的值,以便自动启用水平滚动。

- (void) textViewDidChange:(UITextView *) tView {
    if (tView.text.length > 23) {
// Set some higher width of the text view content size.
        tView.contentSize = CGSizeMake(200.0f, tView.frame.size.height);
    }
}
- (void)viewDidLoad {
    // We restrict the horizontal scrolling here.
    self.textView.contentSize = self.textView.frame.size;
}

Implement this text view delegate method.

Now when the characters entered becomes greater than 23, we set the content size of the text view to a higher value so that horizontal scrolling gets enabled automatically.

- (void) textViewDidChange:(UITextView *) tView {
    if (tView.text.length > 23) {
// Set some higher width of the text view content size.
        tView.contentSize = CGSizeMake(200.0f, tView.frame.size.height);
    }
}
胡大本事 2024-11-21 15:16:58

mscrollview.contentSize = CGSizeMake(180,30);
mscrollview.showsHorizo​​ntalScrollIndicator = YES;

使用这2行。

mscrollview.contentSize = CGSizeMake(180,30);
mscrollview.showsHorizontalScrollIndicator = YES;

Use this 2 lines.

浅浅 2024-11-21 15:16:58

如果您正在使用界面生成器,则只需检查属性即可。

show horizontal scrolling.

默认情况下此属性未启用

If you are using interface builder then just check the property.

show horizontal scrolling.

by default this property is not enable

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