真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS開發(fā)中如何設(shè)置StatusBar狀態(tài)欄

這篇文章主要介紹iOS開發(fā)中如何設(shè)置Status Bar狀態(tài)欄,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

成都創(chuàng)新互聯(lián)憑借在網(wǎng)站建設(shè)、網(wǎng)站推廣領(lǐng)域領(lǐng)先的技術(shù)能力和多年的行業(yè)經(jīng)驗(yàn),為客戶提供超值的營(yíng)銷型網(wǎng)站建設(shè)服務(wù),我們始終認(rèn)為:好的營(yíng)銷型網(wǎng)站就是好的業(yè)務(wù)員。我們已成功為企業(yè)單位、個(gè)人等客戶提供了成都做網(wǎng)站、成都網(wǎng)站制作服務(wù),以良好的商業(yè)信譽(yù),完善的服務(wù)及深厚的技術(shù)力量處于同行領(lǐng)先地位。

前言

我們?cè)诤芏郺pp中可以看到不同與導(dǎo)航欄的狀態(tài)欄的顏色,比如下面:

iOS開發(fā)中如何設(shè)置Status Bar狀態(tài)欄

狀態(tài)欄

個(gè)人覺得 iOS 的 Status Bar 狀態(tài)欄也是一個(gè)比較坑的地方,所以還是寫一個(gè)總結(jié),有遇到這方面問題的朋友可以看一下。

下面話不多說(shuō)了,來(lái)隨著小編一起學(xué)習(xí)學(xué)習(xí)吧

Status Bar 狀態(tài)欄的隱藏

1. 通過(guò)設(shè)置 Info.plist 文件實(shí)現(xiàn)狀態(tài)欄的全局隱藏

在 Info.plist 文件中添加 Status bar is initially hidden 設(shè)置為 YES ,這個(gè)是隱藏 App 在 LunchScreen(歡迎界面)時(shí)的狀態(tài)欄。

在 Info.plist 文件中添加 View controller-based status bar appearance 設(shè)置為 NO,這個(gè)是隱藏 App 在所有 UIViewController 時(shí)的狀態(tài)欄。

iOS開發(fā)中如何設(shè)置Status Bar狀態(tài)欄

Info.plist

特別注意:

當(dāng) Status bar is initially hidden 設(shè)置為 NO 的時(shí)候,不管 View controller-based status bar appearance 設(shè)置為 NO 還是 YES ,都是無(wú)效的,只有 Status bar is initially hidden 設(shè)置為 YES 的時(shí)候, View controller-based status bar appearance 才生效,這個(gè)要注意一下。

2. 通過(guò)代碼實(shí)現(xiàn)狀態(tài)欄的全局隱藏

在 Info.plist 文件中添加 View controller-based status bar appearance 設(shè)置為 NO 。

在 AppDelegate 文件中,實(shí)現(xiàn)下面方法(在其他 UIViewController 中也有效):

// OC
[UIApplication sharedApplication].statusBarHidden = YES;
 
// Swift
UIApplication.sharedApplication().statusBarHidden = true

特別注意:

如果想要通過(guò)代碼實(shí)現(xiàn)狀態(tài)欄隱藏,必須在 Info.plist 文件中添加 View controller-based status bar appearance ,并且必須設(shè)置為 NO ,否則代碼不會(huì)有任何效果,而且代碼只能隱藏 App 在所有 UIViewController 時(shí)的狀態(tài)欄,不能隱藏在 LunchScreen(歡迎界面)時(shí)的狀態(tài)欄。

3. 通過(guò)代碼實(shí)現(xiàn)狀態(tài)欄的局部隱藏

上面的方法是全局隱藏,是隱藏 App 在所有 UIViewController 時(shí)的狀態(tài)欄,下面的方法是局部隱藏,是單個(gè) UIViewController 內(nèi)的隱藏。

在 Info.plist 文件中添加 View controller-based status bar appearance 設(shè)置為 YES 。

在需要隱藏狀態(tài)欄的 UIViewController 文件中,加入下面方法:

// OC
- (BOOL)prefersStatusBarHidden {
 return YES;
}
 
// Swift
override func prefersStatusBarHidden() -> Bool {
 return true
}

特別注意:

如果想要通過(guò)代碼實(shí)現(xiàn)某個(gè) UIViewController 狀態(tài)欄局部隱藏,必須在 Info.plist 文件中添加 View controller-based status bar appearance ,并且必須設(shè)置為 YES ,否則代碼不會(huì)有任何效果。

Status Bar 狀態(tài)欄的顏色

狀態(tài)欄分前后兩部分,要分清這兩個(gè)概念,后面會(huì)用到:

  • 文字部分:就是指的顯示電池、時(shí)間等部分。

  • 背景部分:就是顯示黑色或者圖片的背景部分。

iOS開發(fā)中如何設(shè)置Status Bar狀態(tài)欄

文字部分為白色,背景部分為黑色

1. 設(shè)置 Status Bar 的【文字部分】

簡(jiǎn)單來(lái)說(shuō),就是設(shè)置顯示電池電量、時(shí)間、網(wǎng)絡(luò)部分標(biāo)示的顏色, 這里只能設(shè)置兩種顏色:

// 默認(rèn)的黑色
UIStatusBarStyleDefault
 
// 白色
UIStatusBarStyleLightContent

1)通過(guò)設(shè)置 Info.plist 文件全局設(shè)置狀態(tài)欄的文字顏色

在 Info.plist 里增加一行 UIStatusBarStyle( Status bar style 也可以),這里可以設(shè)置兩個(gè)值,就是上面提到那兩個(gè) UIStatusBarStyleDefault 和 UIStatusBarStyleLightContent 。

iOS開發(fā)中如何設(shè)置Status Bar狀態(tài)欄

Info.plist

2)通過(guò)代碼全局設(shè)置狀態(tài)欄的文字顏色

在 Info.plist 文件中添加 View controller-based status bar appearance 設(shè)置為 NO (理論同上,必須添加且必須設(shè)置為 NO ,否則不生效)。

在 AppDelegate 文件中,實(shí)現(xiàn)下面方法(在其他 UIViewController 中也有效):

// OC
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
 
// Swift
UIApplication.sharedApplication().statusBarStyle = UIStatusBarStyle.LightContent

3)通過(guò)代碼局部設(shè)置狀態(tài)欄的文字顏色

在 Info.plist 文件中添加 View controller-based status bar appearance 設(shè)置為 YES (理論同上,必須添加且必須設(shè)置為 YES ,否則不生效) 。

在需要設(shè)置狀態(tài)欄顏色的 UIViewController 文件中,加入下面方法:

// OC
- (UIStatusBarStyle)preferredStatusBarStyle {
 return UIStatusBarStyleLightContent;
}
 
// Swift
override func preferredStatusBarStyle() -> UIStatusBarStyle {
 return UIStatusBarStyle.LightContent
}

但是!! 當(dāng) UIViewController 在 UINavigationController 導(dǎo)航欄中時(shí),上面方法沒用, preferredStatusBarStyle 方法根本不會(huì)被調(diào)用,因?yàn)?UINavigationController 中也有 preferredStatusBarStyle 這個(gè)方法。

解決辦法有兩個(gè):

方法一: 設(shè)置導(dǎo)航欄的 barStyle 屬性會(huì)影響 status bar 的字體和背景色。如下。

// 狀態(tài)欄字體為白色,狀態(tài)欄和導(dǎo)航欄背景為黑色
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
 
// 狀態(tài)欄字體為黑色,狀態(tài)欄和導(dǎo)航欄背景為白色
self.navigationController.navigationBar.barStyle = UIBarStyleDefault;

方法二: 自定義一個(gè) UINavigationController 的子類,在這個(gè)子類中重寫 preferredStatusBarStyle 這個(gè)方法,這樣在 UIViewController 中就有效了,如下:

@implementation MyNavigationController
 
- (UIStatusBarStyle)preferredStatusBarStyle {
 UIViewController *topVC = self.topViewController;
 return [topVC preferredStatusBarStyle];
}
 
@end

2. 設(shè)置 Status Bar 的【背景部分】

背景部分,簡(jiǎn)單來(lái)說(shuō),就是狀態(tài)欄的背景顏色,其實(shí)系統(tǒng)狀態(tài)欄的背景顏色一直是透明的狀態(tài),當(dāng)有導(dǎo)航欄時(shí),導(dǎo)航欄背景是什么顏色,狀態(tài)欄就是什么顏色,沒有導(dǎo)航欄時(shí),狀態(tài)欄背后的視圖時(shí)什么顏色,它就是什么顏色。

// 這個(gè)方法是設(shè)置導(dǎo)航欄背景顏色,狀態(tài)欄也會(huì)隨之變色
[self.navigationController.navigationBar setBarTintColor:[UIColor redColor]];

如果想要單獨(dú)設(shè)置狀態(tài)欄顏色,可以添加以下方法來(lái)設(shè)置:

/**
 設(shè)置狀態(tài)欄背景顏色
 
 @param color 設(shè)置顏色
 */
- (void)setStatusBarBackgroundColor:(UIColor *)color {
 UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"];
 if ([statusBar respondsToSelector:@selector(setBackgroundColor:)]) {
  statusBar.backgroundColor = color;
 }
}

效果圖:

iOS開發(fā)中如何設(shè)置Status Bar狀態(tài)欄

以上是“iOS開發(fā)中如何設(shè)置Status Bar狀態(tài)欄”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


當(dāng)前標(biāo)題:iOS開發(fā)中如何設(shè)置StatusBar狀態(tài)欄
瀏覽地址:http://weahome.cn/article/psejpi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部