iOS7隱藏狀態欄 status Bar

IOS7中,不只應用的風格有必定的變化,狀態欄變化比較大,咱們能夠看到 UIVIEWCONTROLLER 的狀態欄與導航欄基本是一體的。所以 UIVIEWCONTROLLER的 HIDE/SHOW狀態的方法也跟其餘版本的不同了。 在IOS7之前的版本,HIDE/SHOW是經過如下代碼實現

 

[cpp]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. [[UIApplication sharedApplication] setStatusBarHidden:YES(NO) withAnimation:UIStatusBarAnimationSlide];  

在iOS7中默認狀況下,這個方法不成功了。到setStatusBarHidden:withAnimation:聲明的頭文件去看看,多了一句註釋: // Setting statusBarHidden does nothing if your application is using the default UIViewController-based status bar system. 如今在iOS7中,status bar的外觀默認依賴UIViewController, 也就是說status bar隨UIViewController的不一樣而不一樣。在這種默認的方式下,用全局的方法setStatusBarHidden:withAnimation:是行不通的。

 

google一下發現如今的解決方法有兩種:web

若是隻是單純的隱藏狀態欄,那麼是在默認狀況下,只須要從新實現兩個新方法app

 

[cpp]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. - (UIStatusBarStyle)preferredStatusBarStyle  
  2. {  
  3.     return UIStatusBarStyleLightContent;  
  4.     //UIStatusBarStyleDefault = 0 黑色文字,淺色背景時使用  
  5.   //UIStatusBarStyleLightContent = 1 白色文字,深色背景時使用  
  6. }  
  7.   
  8. - (BOOL)prefersStatusBarHidden  
  9. {  
  10.     return NO; //返回NO表示要顯示,返回YES將hiden  
  11. }  


 

上面一個回調方法返回status bar顯示時候的樣式,下面一個回調控制是否顯示status bar.ide

調用下面的一行代碼將會觸發上面的回調oop

 

[cpp]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. [self setNeedsStatusBarAppearanceUpdate];  

 

若是想在hiden/show之間有點動畫效果,用下面的代碼便可:動畫

 

[cpp]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. [UIView animateWithDuration:0.5 animations:^{  
  2.         [self setNeedsStatusBarAppearanceUpdate];  
  3.     }];  

 

或者調用下面的代碼:google

 

[cpp]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];  

 

還有一種方法是在infor.plist中加入key:UIViewControllerBasedStatusBarAppearance 並設置其值爲NO,這樣就告訴系統,status bar不依賴於UIViewController. 這樣就能夠經過上面的方法來hiden status bar.
url

在設置好這些,咱們仍是會發現一些問題,就是狀態欄雖然沒有了,但取而代之的是黑色的一片區域,因此咱們還須要調整UIViewController的視圖,具體代碼爲:spa

 

[cpp]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. -(void)viewDidLayoutSubviews  
  2. {  
  3.     CGRect viewBounds = self.view.bounds;  
  4.     CGFloat topBarOffset = 20.0;  
  5.     viewBounds.origin.y = -topBarOffset;  
  6.     self.view.bounds = viewBounds;  
  7.     [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];//for status bar style  
  8. }  
相關文章
相關標籤/搜索