我有一个UINavigationBar,它在app delegate类中设置了背景图像,所以你可以想象为什么我不希望Navigationbar变得半透明。我认为这是罪魁祸首:http://imgur.com/v3e0NIo
无论如何我把这行代码放在一边:
[[UINavigationBar appearance] setTranslucent:NO];
在我的AppDelegate中遇到这个错误:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** Illegal property type, B for appearance setter, _installAppearanceSwizzlesForSetter:'
即使我尝试在每个类中单独使每个UINavigationbar不透明,我仍然在图像中有那个愚蠢的白条!不会抛出任何错误,这让我想知道代码是不起作用,还是透明度不是我的问题?
谢谢!
编辑:
以下是我在AppDelegate中使用的代码,用于为NavBar创建自定义背景:
[[UINavigationBar appearance] setTitleTextAttributes: @{
UITextAttributeTextColor: [UIColor whiteColor],
UITextAttributeTextShadowColor: [UIColor blackColor],
UITextAttributeTextShadowOffset: [NSValue valueWithUIOffset:UIOffsetMake(0.0f, 1.0f)],
UITextAttributeFont: [UIFont fontWithName:@"Code-Bold" size:23.0f]
}];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault animated:NO];
UIImage *navBarImage = [[UIImage imageNamed:@"menubar.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(5, 15, 5, 15)];
[[UINavigationBar appearance] setBackgroundImage:navBarImage forBarMetrics:UIBarMetricsDefault];
即使我将UIViewController的背景设为黑色,白色条仍然存在。我现在高度怀疑透明度是我的问题!
答案 0 :(得分:5)
将其添加并将其放在每个viewcontrollers类的viewdidload
中:
self.navigationController.navigationBar.translucent = NO;
答案 1 :(得分:0)
我使用Interface Builder可以从此
禁用translucenXib文件 - >属性检查器 - >模拟指标并将顶部栏属性设置为不透明
或尝试
self.navigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;
或者或者或者查看这篇文章 https://stackoverflow.com/a/19128721/2876717