我有一张地图,屏幕顶部只有一个后退按钮。出于某种原因,它不会改变我的颜色。这是我在委托中用于更改委托中的另一个后退按钮的代码。
UIBarButtonItem *barButtonAppearance = [UIBarButtonItem appearance];
[barButtonAppearance setTintColor:[UIColor blackColor]];
干杯!
要更改单个按钮的文本颜色,您可以将属性字符串设置为其标题:
NSDictionary *attributes = @{NSForegroundColorAttributeName: [UIColor redColor]};
[button setTitleTextAttributes:attributes forState:UIControlStateNormal];
要更改导航栏中所有按钮的颜色,请尝试:
self.navigationController.navigationBar.tintColor = [UIColor redColor];
如果您有图像而不是文本,最后一个也会更改色调颜色。
这两种方法都在 iOS7 下进行了测试。