Last active
March 9, 2016 15:07
-
-
Save fhefh2015/ddabd9284e3d1e610d15 to your computer and use it in GitHub Desktop.
设置navigationBar和navigationItem -> rightBarButtonItem文字颜色
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//设置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