IOS狀態列隱藏設定

2021-08-02 18:31:50 字數 310 閱讀 8910

一.用**設定狀態列的顯示和隱藏:

-(bool)perfersstatusbarhidden

同樣的方法設定狀態列的樣式:複寫的方法為

- (uistatusbarstyle)preferredstatusbarstyle

二.用 plist 設定狀態列的顯示和隱藏:- 

在 plist 中新增status bar is initially hidden 設定其值為 yes,狀態列就會隱藏,或者在專案的 general 中deployment info 中勾選 hide status bar ,這樣就設定狀態列隱藏了;

iOS隱藏狀態列

ios6和ios7在隱藏 status bar 三種方式比較 storyboard 介面上選中uiviewcontroller,最右邊simulated metrics找到 status bar 設定成 none viewcontroller ios 7 info.plist 不但要在info.pl...

iOS隱藏狀態列

在targets general 勾選中hide status bar 整個專案隱藏狀態列 google一下發現現在的解決方法有兩種 如果只是單純的隱藏狀態列,那麼是在預設情況下,只需要重新實現兩個新方法 uistatusbarstyle preferredstatusbarstyle bool p...

ios 隱藏頂部狀態列

ios6和 ios7在隱藏 status bar 三種方式比較 storyboard 介面上選中uiviewcontroller,最右邊simulated metrics找到 status bar 設定成 none 實現prefersstatusbarhidden方法,返回 yes bool pre...