iOS7隱藏狀態欄 status Bar

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

 

[[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一下發現如今的解決方法有兩種:
app

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

 

- (UIStatusBarStyle)preferredStatusBarStyle
{
    return UIStatusBarStyleLightContent;
    //UIStatusBarStyleDefault = 0 黑色文字,淺色背景時使用
  //UIStatusBarStyleLightContent = 1 白色文字,深色背景時使用
}

- (BOOL)prefersStatusBarHidden
{
    return NO; //返回NO表示要顯示,返回YES將hiden
}


 

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

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

 

[self setNeedsStatusBarAppearanceUpdate];

 

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

 

[UIView animateWithDuration:0.5 animations:^{
        [self setNeedsStatusBarAppearanceUpdate];
    }];

 

或者調用下面的代碼:code

 

[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];

 

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

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

 

-(void)viewDidLayoutSubviews
{
    CGRect viewBounds = self.view.bounds;
    CGFloat topBarOffset = 20.0;
    viewBounds.origin.y = -topBarOffset;
    self.view.bounds = viewBounds;
    [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];//for status bar style
}
相關文章
相關標籤/搜索