IOS 導航條 以及 狀態列顏色 相關設定__IOS

來源:互聯網
上載者:User
局部導覽列顏色設定
//設定導航條顏色 美團導覽列顏色    self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:78.0/255 green:238.0/255 blue:218.0/255 alpha:1.0];//設定導航條文字顏色 白色 self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};//設定按鈕文字顏色 白色self.navigationController.navigationBar.setTintColor = [UIColor whiteColor]];
全域導覽列顏色設定
/*在 AppDelegate.m 中*///設定導航條顏色 美團導覽列顏色[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:78.0/255 green:238.0/255 blue:218.0/255 alpha:1.0]];//設定導航條文字顏色 白色[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];//設定按鈕文字顏色 白色[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];//設定導覽列按鈕字型大小[[UIBarButtonItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont boldSystemFontOfSize:15], UITextAttributeFont,nil] forState:UIControlStateNormal];
更改狀態列顏色白色

===============2015.11.22=================
突然發現了在General裡面調節StatusBarStyle就可以了,這樣還可以解決LaunchScreen.storyboard中狀態列顏色黑色的問題。

==================Old===================
* 首先在info.plist中添加一條UIViewControllerBasedStatusBarAppearance,值為NO
* 再在程式裡寫下面的語句

[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.