1. 程式人生 > >iOS7隱藏狀態列 status Bar

iOS7隱藏狀態列 status Bar

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

如果只是單純的隱藏狀態列,那麼是在預設情況下,只需要重新實現兩個新方法

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

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


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

呼叫下面的一行程式碼將會觸發上面的回撥

[self setNeedsStatusBarAppearanceUpdate];

如果想在hiden/show之間有點動畫效果,用下面的程式碼即可:

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

或者呼叫下面的程式碼:

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

還有一種方法是在infor.plist中加入key:UIViewControllerBasedStatusBarAppearance 並設定其值為NO,這樣就告訴系統,status bar不依賴於UIViewController. 這樣就可以通過上面的方法來hiden status bar.

在設定好這些,我們還是會發現一些問題,就是狀態列雖然沒有了,但取而代之的是黑色的一片區域,所以我們還需要調整UIViewController的檢視,具體程式碼為:

-(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
}