cannot make a text view scroll - xcode 4.3

2019-08-13 02:54发布

I am using Xcode 4.3

I have a single screen that has a text view UITextView that I wish to be able to scroll just vertically.

I have added a scroll to the screen UIScrollview and a UITextview on top of that. I have created a new outlet called theScroller and in the viewcontroller.m file added the line.

(void)viewdidLoad 
{
self.thescroller.contentSize=CGSizeMake(280.0,600.0);

However in most tutorials I have watched, they all add a line before this to set scroller to YES, but in Xcode 4.3 it wont let me. How do I turn the scroller on. what am I doing wrong.?

I am a newbie at this so please keep things simple. thanks

2条回答
三岁会撩人
2楼-- · 2019-08-13 03:12

Firstly, is the content of the UITextView larger than the view dimensions for the UITextView? If it is larger, then it will scroll, if not, then it won't scroll.

And with the UITextView you don't need an additional UIScrollView for it to scroll.

You've added the contentSize code, however, the UITextView won't scroll if your text isn't larger than the normal view size. UITextView's automatically allow scroll if any text overflows from the size. Try adding a lot more text than will view, and see if it scrolls then.

查看更多
你好瞎i
3楼-- · 2019-08-13 03:22

I have exactly what you need in my public repo TextScroller. It supports normal right to left, left to right (Like LED) or floating type that floats like the music name in music player !

查看更多
登录 后发表回答