Skip to content

Instantly share code, notes, and snippets.

@werelax
Created February 13, 2014 17:55
Show Gist options
  • Select an option

  • Save werelax/8980316 to your computer and use it in GitHub Desktop.

Select an option

Save werelax/8980316 to your computer and use it in GitHub Desktop.
Disable UIWebView Bounce in Phonegap App for iOS (the bad way)
- (void)webViewDidFinishLoad:(UIWebView*)theWebView
{
// Black base color for background matches the native apps
theWebView.backgroundColor = [UIColor blackColor];
// ADD THIS LINE!
theWebView.scrollView.bounces = NO;
return [super webViewDidFinishLoad:theWebView];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment