Okay, so I am writing an iPhone app that is basically one view (a UIWebView) that pulls down a bunch of text from my website. I have properly formatted the text on the server-side with CSS/HTML. However, I want to disable both horizontal scrolling, as well as the autorotation feature.
When I add more text than the screen can hold, it disables horizontal scrolling for me automatically (only vertical is enabled at that point). When there is not enough text to fill the entire screen, then both horizontal and vertical scrolling are both turned on (that little "bounce" animation).
I would like to disable the horizontal scrolling completely from the client side. Meaning the UITextView. Advice?
When I add more text than the screen can hold, it disables horizontal scrolling for me automatically (only vertical is enabled at that point). When there is not enough text to fill the entire screen, then both horizontal and vertical scrolling are both turned on (that little "bounce" animation).
I would like to disable the horizontal scrolling completely from the client side. Meaning the UITextView. Advice?