第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在Swift iOS應(yīng)用中隱藏狀態(tài)欄?

如何在Swift iOS應(yīng)用中隱藏狀態(tài)欄?

呼啦一陣風(fēng) 2019-11-23 10:28:14
我想刪除屏幕頂部的狀態(tài)欄。這不起作用:func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: NSDictionary?)-> Bool{        application.statusBarHidden = true        return true}我也嘗試過:func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: NSDictionary?)-> Bool{    self.window = UIWindow(frame: UIScreen.mainScreen().bounds)    var controller = UIViewController()    application.statusBarHidden = true    controller.setNeedsStatusBarAppearanceUpdate()    var view = UIView(frame: CGRectMake(0, 0, 320, 568))    view.backgroundColor = UIColor.redColor()    controller.view = view    var label = UILabel(frame: CGRectMake(0, 0, 200, 21))    label.center = CGPointMake(160, 284)    label.textAlignment = NSTextAlignment.Center    label.text = "Hello World"    controller.view.addSubview(label)    self.window!.rootViewController = controller    self.window!.makeKeyAndVisible()    return true}
查看完整描述

3 回答

?
慕運(yùn)維8079593

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊

您確實(shí)應(yīng)該在視圖控制器上實(shí)現(xiàn)preferredsStatusBarHidden:


Swift 3及更高版本


override var prefersStatusBarHidden: Bool {

    return true

}


查看完整回答
反對(duì) 回復(fù) 2019-11-23
?
幕布斯7119047

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊

如果要在按鈕水龍頭上隱藏并恢復(fù)狀態(tài)欄,而在顯示和關(guān)閉幻燈片菜單,彈出窗口等時(shí),則可以使用以下方法:


隱藏狀態(tài)欄:-


UIApplication.shared.keyWindow?.windowLevel = UIWindowLevelStatusBar

恢復(fù)狀態(tài)欄:-


UIApplication.shared.keyWindow?.windowLevel = UIWindowLevelNormal 


查看完整回答
反對(duì) 回復(fù) 2019-11-23
  • 3 回答
  • 0 關(guān)注
  • 1160 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)