Skip to content

Instantly share code, notes, and snippets.

@tonyarnold
Created March 15, 2010 12:47
Show Gist options
  • Select an option

  • Save tonyarnold/332801 to your computer and use it in GitHub Desktop.

Select an option

Save tonyarnold/332801 to your computer and use it in GitHub Desktop.
/* Disable all scrolling for these web views. */
for (UIView *view in [self subviews]) {
if ([view isKindOfClass:[UIScrollView class]]) {
UIScrollView *scrollView = (UIScrollView *)view;
scrollView.scrollEnabled = NO;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment