Skip to content

Instantly share code, notes, and snippets.

@AfonsoTsukamoto
Created August 11, 2014 12:09
Show Gist options
  • Save AfonsoTsukamoto/e15377cb3f16f166d93d to your computer and use it in GitHub Desktop.
Save AfonsoTsukamoto/e15377cb3f16f166d93d to your computer and use it in GitHub Desktop.
[ios] set attributed text to nav title
NSShadow *shadow = [[NSShadow alloc] init];
[shadow setShadowOffset:CGSizeMake(1, 1)];
[shadow setShadowColor:[UIColor blackColor]];
[shadow setShadowBlurRadius:1];
navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor], NSShadowAttributeName: shadow};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment