你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS技巧綜合 >> 設置導航欄nav全透明

設置導航欄nav全透明

編輯:IOS技巧綜合
[摘要]本文是對設置導航欄nav全透明的講解,對學習IOS蘋果軟件開發有所幫助,與大家分享。

  設置導航欄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]];

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved