更改导航栏的按钮颜色

时间:2013-07-17 03:55:26

标签: ios ios6 uiviewcontroller uinavigationcontroller uinavigationbar

是否可以在iOS 6的导航栏中更改没有图像的按钮颜色?

我在其他stackoverflow帖子上看到,在iOS 5中你需要一个图像。这仍然是真的吗?

1 个答案:

答案 0 :(得分:2)

使用浅色更改颜色。以下将为您提供一个红色背景的按钮。

UIBarButtonItem *button = [[UIBarButtonItem alloc] init];
[button setTintColor:[UIColor redColor]];

或者如果使用storyboard / xib,则会有一个色调下拉列表。