我要在UITextView
中展示大量文字。
我的情况是我想要触摸滚动UITextView's
scrollbar
。
在UITextView
中,我只能使用原始滚动功能滚动。
我想滚动UITextView,滚动条存在于UITextView的右侧,如浏览器,但我无法滚动它。
在Mac中,我们可以像这样滚动滚动条。
我该怎么做?我的要求是否有自定义控件?
答案 0 :(得分:0)
试试这段代码。
UITextView *textView = [[UITextView alloc] init];
textView.scrollEnabled = YES;
希望它会对你有所帮助。