My UIWebView should not allow vertical scrolling. However, horizontal scrolling should possible.
I have been looking through the documentation, but couldn\'t find an
To make it full work, write:
webview.scrollView.delegate = self;
[webview.scrollView setShowsHorizontalScrollIndicator:NO];
}
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if (scrollView.contentOffset.x > 0)
scrollView.contentOffset = CGPointMake(0, scrollView.contentOffset.y);
if (scrollView.contentOffset.x < 0)
scrollView.contentOffset = CGPointMake(0, scrollView.contentOffset.y);
}
I have just added the last two lines, because when you write it like pnizzle did, you can't scroll from the right to the left side, but still from the left to the right.
Good luck