如何制作滚动条可以在iOS中的UITextView中滚动?

时间:2014-04-26 03:48:24

标签: ios scroll uitextview

我要在UITextView中展示大量文字。

我的情况是我想要触摸滚动UITextView's scrollbar

UITextView中,我只能使用原始滚动功能滚动。

我想滚动UITextView,滚动条存在于UITextView的右侧,如浏览器,但我无法滚动它。

在Mac中,我们可以像这样滚动滚动条。

enter image description here

我该怎么做?我的要求是否有自定义控件?

1 个答案:

答案 0 :(得分:0)

试试这段代码。

UITextView *textView = [[UITextView alloc] init];
textView.scrollEnabled = YES;

希望它会对你有所帮助。