Skip to content

Instantly share code, notes, and snippets.

@mteece
Created December 12, 2012 19:31
Show Gist options
  • Select an option

  • Save mteece/4270818 to your computer and use it in GitHub Desktop.

Select an option

Save mteece/4270818 to your computer and use it in GitHub Desktop.
UINavigationBar appearance API.
// 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