要以编程方式更改barTint颜色,我已经创建了一个自己的UINavigationBar类,它扩展了UINavigationBar。在那里我重写了方法setBarTintColor来改变颜色。在iOS 7.1中,这个方法永远不会被调用,所以我现在从“awakeFromNib”方法手动调用它,但我认为这是问题的开始。
我使用此自定义类来覆盖以下外观设置:
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithWhite:0.302 alpha:1.000]];
在我的自定义类中使用此方法:
- (void)setBarTintColor:(UIColor *)barTintColor
{
UIDevice *device = [UIDevice currentDevice];
if(![NachtModusController NachtModus])
{
if (device.platformType == UIDevice4iPhone || device.platformType == UIDevice4SiPhone)
{
[super setBarTintColor:[UIColor colorWithWhite:1.000 alpha:1.000]];
}
else
{
[super setBarTintColor:[UIColor colorWithWhite:1.000 alpha:0.800]];
}
}
else
{
//Nachtmodus.
if (device.platformType == UIDevice4iPhone || device.platformType == UIDevice4SiPhone)
{
[super setBarTintColor:[UIColor colorWithWhite:0.302 alpha:1.000]];
}
else
{
[super setBarTintColor:[UIColor colorWithWhite:0.302 alpha:0.900]];
}
}
}
我发现了:
- (void)setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics
没有在7.1中调用但是:
- (void)setBackgroundImage:(UIImage *)backgroundImage forBarPosition:(UIBarPosition)barPosition barMetrics:(UIBarMetrics)barMetrics
时。
如何使用自定义类覆盖setBarTintColor外观设置?
我的解决方案:
似乎设置了这样的图像:
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navbar"] forBarMetrics:UIBarMetricsDefault];
然后像这样重置:
[[UINavigationBar appearance] setBackgroundImage:nil forBarMetrics:UIBarMetricsDefault];
在iOS7.1中也会造成一些副作用(与7.0不同)
我删除了背景图片,我只使用了barTint颜色,我用外观选项更改并更改当前(self.navigationController.navigationbar)。
我删除了自定义类。
答案 0 :(得分:1)
您不应覆盖setBarTintColor:
以更改barTintColor
。在您的情况下,您“破坏”setBarTintColor:
方法的功能,因为它忽略了输入参数。此外,只要您不调用NavigationBar
功能,setBarTintColor:
就不会按预期更改颜色。
在创建导航栏时,您应该将此代码移动到调用它的位置。您可以在创建NavigationBar
之后从外部调用它,也可以覆盖NavigationBar
类中的初始化方法。