Skip to content

Instantly share code, notes, and snippets.

@hunk
Created March 12, 2012 19:10
Show Gist options
  • Select an option

  • Save hunk/2024044 to your computer and use it in GitHub Desktop.

Select an option

Save hunk/2024044 to your computer and use it in GitHub Desktop.
//remove the ugly shadow of uiwebview
for(UIView *wview in [[[myCustomWebView subviews] objectAtIndex:0] subviews]) {
if([wview isKindOfClass:[UIImageView class]]) {
wview.hidden = YES;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment