設置導航欄nav全透明 - (void)viewDidLoad {裡面添加 swift:版本 // 1、設置視圖背景顏色 // self.view.backgroundColor = UIColor(white: 0.25, alpha: 1.0) // // // 2、設置導航欄標題屬性:設置標題 ...
設置導航欄nav全透明
- (void)viewDidLoad {裡面添加
swift:版本
// 1、設置視圖背景顏色
// self.view.backgroundColor = UIColor(white: 0.25, alpha: 1.0)
//
// // 2、設置導航欄標題屬性:設置標題顏色
// self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName:UIColor.whiteColor()]
// // 3、設置導航欄前景色:設置item指示色
// self.navigationController?.navigationBar.tintColor = UIColor.whiteColor()
//
// // 4、設置導航欄半透明
// self.navigationController?.navigationBar.translucent = true
//
// // 5、設置導航欄背景圖片
// self.navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default)
//
// // 6、設置導航欄陰影圖片
// self.navigationController?.navigationBar.shadowImage = UIImage()
OC:版本
[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];
[self.navigationController.navigationBar setTranslucent:true];
[self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar setShadowImage:[[UIImage alloc] init]];