Presenting modal in iOS 13 fullscreen

后端 未结 30 2123
囚心锁ツ
囚心锁ツ 2020-11-21 06:48

In iOS 13 there is a new behaviour for modal view controller when being presented.

Now it\'s not fullscreen by default and when I try to slide down, the app just dis

30条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-21 07:19

    Latest for iOS 13 and Swift 5.x

    let vc = ViewController(nibName: "ViewController", bundle: nil)
    

    vc.modalPresentationStyle = .fullScreen

    self.present(vc, animated: true, completion: nil)
    

提交回复
热议问题