Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created March 13, 2012 05:53
Show Gist options
  • Save hanksudo/2027093 to your computer and use it in GitHub Desktop.
Save hanksudo/2027093 to your computer and use it in GitHub Desktop.
UIBarButtonItenTextAttribute
[[UIBarButtonItem appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:0.0/255.0 green:0.0/255.0 blue:0.0/255.0 alpha:1.0], UITextAttributeTextColor,
[UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0], UITextAttributeTextShadowColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"Helvetica Bold" size:13.0], UITextAttributeFont,
nil]
forState:UIControlStateNormal];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment