Created
December 12, 2012 19:31
-
-
Save mteece/4270818 to your computer and use it in GitHub Desktop.
UINavigationBar appearance API.
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
| // Customize the title text for *all* UINavigationBars | |
| [[UINavigationBar appearance] setTitleTextAttributes: | |
| [NSDictionary dictionaryWithObjectsAndKeys: | |
| [UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:1.0], | |
| UITextAttributeTextColor, | |
| [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8], | |
| UITextAttributeTextShadowColor, | |
| [NSValue valueWithUIOffset:UIOffsetMake(0, -1)], | |
| UITextAttributeTextShadowOffset, | |
| [UIFont fontWithName:@"Arial-Bold" size:0.0], | |
| UITextAttributeFont, | |
| nil]]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment