How can I disable vertical scrolling in my UITextView? I want it to basically just scroll horizontally.
Just set the contentSize to the height of the view.
contentSize
You'll use this:
CGSize scrollableSize = CGSizeMake(widthOfContent, heightOfView); [myScrollView setContentSize:scrollableSize];