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 div
s that are set to scrollable via the CSS -webkit-overflow-scrolling: touch
directive.