Skip to content

Instantly share code, notes, and snippets.

@jjcall
Created March 27, 2014 19:54
Show Gist options
  • Save jjcall/9816784 to your computer and use it in GitHub Desktop.
Save jjcall/9816784 to your computer and use it in GitHub Desktop.
NSShadow *shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8];
shadow.shadowOffset = CGSizeMake(0, 1);
[[UINavigationBar appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:245.0/255.0 green:245.0/255.0 blue:245.0/255.0 alpha:1.0], NSForegroundColorAttributeName,
shadow, NSShadowAttributeName,
[UIFont fontWithName:@"HelveticaNeue-CondensedBlack" size:21.0], NSFontAttributeName, nil]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment