I\'ve tried disabling it by inserting:
into my HTML string, and a dozen variations of th
Set the delegate for the UIWebview's UIScrollview (on iOS5 by webview.scrollView and on iOS4 by traversing the subview tree and selecting the UIScrollview subview) to 'self' and use the following code:
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
[scrollView setContentOffset:CGPointMake(0, scrollView.contentOffset.y)];
}
Works perfectly, for some reason my HTML code was overflowing horizontally without any need for it. This fix it.