Skip to content

Instantly share code, notes, and snippets.

@ljanzik
Created June 5, 2012 21:01
Show Gist options
  • Save ljanzik/2877876 to your computer and use it in GitHub Desktop.
Save ljanzik/2877876 to your computer and use it in GitHub Desktop.
Useful Snippets for working with UIWebView
for (id subView in [webView subviews]) {
if ([subView respondsToSelector:@selector(flashScrollIndicators)]) {
[subView flashScrollIndicators];
}
}
for( UIView *view in [self.webView subviews] ) {
if( [view isKindOfClass:[UIScrollView class]] ) {
for( UIView *innerView in [view subviews] ) {
if( [innerView isKindOfClass:[UIImageView class]] ) {
innerView.hidden = YES;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment