Last active
December 12, 2015 06:49
Setting the color of button text to black in CSS vs. Objective-C.
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
| .button { color: black; } |
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
| - (void)customizeAppearance | |
| { | |
| [[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:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:0.0], | |
| UITextAttributeTextShadowColor, | |
| nil] | |
| forState:UIControlStateNormal]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment