有什么简单的方法可以改变 UIToolBar 按钮标题的标题颜色,就像我们在 UIBarButtonItem 中使用的那样:
[[UIBarButtonItem appearance]
setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor],
UITextAttributeTextColor,nil]
forState:UIControlStateNormal];
UITextAttributeTextColor
在 iOS >= 7.0 中被弃用。
使用 setTintColorUIColor *)
来改变按钮标题的颜色。
为UIToolBar
设置默认标题颜色:
[_myUIToolBar setTintColor:[UIColor redColor]];
或设置单个UIBarButtonItem
的标题颜色:
[_myUIBarButtonItem setTintColor:[UIColor blueColor]];
关于ios - 如何更改 UIToolbar 按钮的标题颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17486264/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |