有什么简单的方法可以改变 UIToolBar 按钮标题的标题颜色,就像我们在 UIBarButtonItem 中使用的那样:
[[UIBarButtonItem appearance]
setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor],
UITextAttributeTextColor,nil]
forState:UIControlStateNormal];
Best Answer-推荐答案 strong>
UITextAttributeTextColor 在 iOS >= 7.0 中被弃用。
使用 setTintColorUIColor *) 来改变按钮标题的颜色。
为UIToolBar 设置默认标题颜色:
[_myUIToolBar setTintColor:[UIColor redColor]];
或设置单个UIBarButtonItem 的标题颜色:
[_myUIBarButtonItem setTintColor:[UIColor blueColor]];
关于ios - 如何更改 UIToolbar 按钮的标题颜色?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/17486264/
|