有兩種方法可以隱藏狀態(tài)欄: 1揉忘、全局隱藏松却;2奠货、Controller內(nèi)單獨設置
-
全局隱藏狀態(tài)欄
1.TARGETS->Deployment Info->Hide status bar
2.info.plist->View controller-based status bar appearance
除上述外還有一種全局隱藏狀態(tài)欄的方法:
UIApplication.sharedApplication().statusBarHidden = true
-
單獨隱藏狀態(tài)欄
在需要隱藏狀態(tài)欄的控制器重寫此方法
注意:如果在設置以下方法時info.plist->View controller-based status bar appearance為NO封孙,則無效主慰。刪掉或者設置為YES即可
override func prefersStatusBarHidden() -> Bool {
return true
}