當我隱藏導航欄和工具欄時,我想隱藏狀態欄。功能中的隱藏狀態欄
我怎樣才能讓狀態欄隱藏在if NavigationBar.hidden == false && Toolbar.hidden == false{}
?? 我不知道如何做到這一點,我知道函數返回Statusbarhidden,但在整個ViewController多數民衆贊成,我會隱藏它的功能。
感謝您的幫助。
func ImageTapGesture() {
if NavigationBar.hidden == false && Toolbar.hidden == false{
NavigationBar.hidden = true
Toolbar.hidden = true
} else if NavigationBar.hidden == true && Toolbar.hidden == true {
NavigationBar.hidden = false
Toolbar.hidden = false
}
}
您是否看到此問題?這可能會幫助你 - http://stackoverflow.com/questions/18979837/how-to-hide-ios-status-bar – BLC
但多數民衆贊成在完整的應用程序你的整個ViewController,但隱藏在一個功能我有沒有發現。你有一個想法,我怎麼能在一個功能? – Hindus