Skip to content

Instantly share code, notes, and snippets.

@neocoder
Created April 10, 2012 13:44
Show Gist options
  • Save neocoder/2351480 to your computer and use it in GitHub Desktop.
Save neocoder/2351480 to your computer and use it in GitHub Desktop.
PhoneGap/Cordova patch to disable page elastic bounce
- (void)viewDidLoad
{
[super viewDidLoad];
UIScrollView* sv = nil;
for(UIView* v in self.webView.subviews){
if([v isKindOfClass:[UIScrollView class] ]){
sv = (UIScrollView*) v;
sv.bounces = NO;
}
}
}
Copy link

ghost commented Sep 20, 2012

This is great, thanks!

@jonasdeherdt
Copy link

sweet :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment