从故事板更改条形按钮项的文本颜色

时间:2013-01-03 21:21:35

标签: ios ios6

我在故事板中通过故事板创建的导航栏拖放了Bar Button Item 我想知道如何从故事板中更改条形按钮项的文本颜色?
我试过为吧按钮项创建一个插座然后尝试:
[myBackButton.titleLabel.textColor = [UIColor blackColor]];

甚至试过barbuttonItem:

[myButton setTitleColor:[UIColor redColor] forState:UIControlStateNormal]; 

但是我收到了一个错误。我尝试更改色调背景颜色更改但文本颜色仍然是白色如何将文本颜色更改为黑色?  在此先感谢。

2 个答案:

答案 0 :(得分:4)

您可以使用Attributes更改文字颜色。例如,

NSDictionary *attributes = @{UITextAttributeTextColor : [UIColor redcolor]};
[myButton setTitleTextAttributes:attributes
                      forState:UIControlStateNormal];

答案 1 :(得分:0)

我认为这会有所帮助

[[UIBarButtonItem appearance] setTintColor:[UIColor yellowColor]];