Skip to content

Instantly share code, notes, and snippets.

@is8r
Created June 15, 2013 10:20
Show Gist options
  • Save is8r/5787649 to your computer and use it in GitHub Desktop.
Save is8r/5787649 to your computer and use it in GitHub Desktop.
UINavigationBarの陰を削除
UINavigationBar *navBar = [self navigationBar];
if ([[[UIDevice currentDevice] systemVersion] intValue] == 6) {
[navBar setShadowImage:[[UIImage alloc] init]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment