更改UINavigationBar颜色问题

时间:2014-09-30 02:20:51

标签: ios uinavigationbar

我在UINavigation栏上修改颜色时遇到问题。我觉得我已经尝试了所有的东西,但我现在的代码如下(MasterViewController.m,我的主视图):

-(void)awakeFromNib{
[super awakeFromNib];
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:0.9333 green:0.3647 blue:0.3843 alpha:1.0]];
[[UINavigationBar appearance] setBackgroundColor:[UIColor colorWithRed:0.9333 green:0.3647 blue:0.3843 alpha:1.0]];
[[UINavigationBar appearance] setTranslucent:NO];


}

这是我的故事板中的设置:

enter image description here

为什么这不起作用?

0 个答案:

没有答案