Created
June 15, 2013 10:20
-
-
Save is8r/5787649 to your computer and use it in GitHub Desktop.
UINavigationBarの陰を削除
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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