I have a UITextView that works well, till it’s content is larger than it’s own frame.
In that case it’s scrolled down, but for some reason I cant re-scroll it back to the beginning, but only a few lines up.
How do I control the size of the content and the range of scrolling?
thanks
I have a UITextView that works well, till it’s content is larger than it’s
Share
stupid problem, but I’ll answer anyway:
I had a scrollViewDidScroll method in order to control a UITableView scrolling.
This method was called also when my textView was scrolled – and actually made some troubles.
so I just checked the sender in the first line:
thanks for the help..