UIWebView Prevent Body Scroll Bounce

If you want to prevent the UIWebView from allowing users to scroll the body of your embedded web application, just add the following code:

webView.scrollView.bounces = NO;

This works very well, especially for any divs that are set to scrollable via the CSS -webkit-overflow-scrolling: touch directive.

See stackoverflow.com