UINavigationBar:按钮字体颜色

时间:2010-11-27 01:17:49

标签: iphone button fonts colors uinavigationbar

我有UINavigationBar,我用

更改了所有后退按钮的背景颜色
@implementation UINavigationBar (UINavigationMyToolbar)
- (void) drawRect:(CGRect)rect {
    self.tintColor = <UIColor>;
}

但我找不到如何更改应用中所有后退按钮的字体颜色的答案?!

提前致谢。

1 个答案:

答案 0 :(得分:0)

您可以通过更改navigationController.navigationBar背景颜色来更改按钮颜色。

self.navigationController.navigationBar.tintColor = [UIColor redColor]; // or whatever color you like

哦,如果您想要更改整个应用程序,请将其放在AppDelegate didFinishLaunchingWithOptions中,只要您不在任何其他控制器中更改它,您应该是好的。如果每个视图的颜色不同,请将其放在每个视图的viewWillAppearinit中。