如何更改后退按钮的颜色?

时间:2013-10-23 11:32:49

标签: ios button colors

我有一张地图,屏幕顶部只有一个后退按钮。出于某种原因,它不会为我改变颜色。这是代理中的代码,用于更改委托中的其他后退按钮。

UIBarButtonItem *barButtonAppearance = [UIBarButtonItem appearance]; [barButtonAppearance setTintColor:[UIColor blackColor]];

干杯!

1 个答案:

答案 0 :(得分:0)

要更改单个按钮的文本颜色,您可以将属性字符串设置为其标题:

NSDictionary *attributes = @{NSForegroundColorAttributeName: [UIColor redColor]};
[button setTitleTextAttributes:attributes forState:UIControlStateNormal];

要更改导航栏中所有按钮的颜色,请尝试:

self.navigationController.navigationBar.tintColor = [UIColor redColor];

如果你有一个图像而不是文字,最后一个也会改变色调颜色。

这两种方法都是在iOS7上测试的。