有什么方法可以让UINavigationBar
iOS 7 的 , 没有半透明的纯色?我尝试设置背景颜色、barTintColor、不透明、透明/半透明等……但没有任何效果。
有人知道怎么做吗?
这是我一直在使用的一些代码块。注意我在navigationBar
. 它们中的任何一个,以任何顺序或组合都没有奏效。
@property (strong, nonatomic) UITabBarController *tabBarController;
testViewController = [[TestViewController alloc] init];
anotherViewController = [[AnotherViewController alloc] init];
navigationController = [[UINavigationController alloc]
initWithRootViewController:testViewController];
navigationController.navigationBar.barTintColor = [UIColor darkGrayColor;
navigationController.navigationBar.barStyle = UIBarStyleBlack;
navigationController.navigationBar.translucent = YES;
navigationController.navigationBar.opaque = YES;
NSArray *tabBarViewControllers = [NSArray arrayWithObjects:
navigationController,
anotherViewController, nil];
self.tabBarController.viewControllers = tabBarViewControllers;