Skip to content

Instantly share code, notes, and snippets.

@fhefh2015
Last active March 9, 2016 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fhefh2015/ddabd9284e3d1e610d15 to your computer and use it in GitHub Desktop.
Save fhefh2015/ddabd9284e3d1e610d15 to your computer and use it in GitHub Desktop.
设置navigationBar和navigationItem -> rightBarButtonItem文字颜色
//设置navigationBar文字颜色
[self.navigationController.navigationBar setTitleTextAttributes:
@{NSForegroundColorAttributeName:[UIColor yellowColor]}];
//navigationItem -> rightBarButtonItem文字颜色
[self.navigationItem.rightBarButtonItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor yellowColor]}
forState:UIControlStateNormal]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment