Disable gesture to pull down form/page sheet modal presentation

前端 未结 14 2863
我寻月下人不归
我寻月下人不归 2020-11-27 13:58

In iOS 13 modal presentations using the form and page sheet style can be dismissed with a pan down gesture. This is problematic in one of my form sheets because the user dra

14条回答
  •  佛祖请我去吃肉
    2020-11-27 14:28

    In prepare(for:sender:) :

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        if segue.identifier == viewControllerSegueID {
            let controller = segue.destination as! YourViewController
            controller.modalPresentationStyle = .fullScreen
        }
    }
    

    or, after you initialize your controller:

    let controller = YourViewController()
    controller.modalPresentationStyle = .fullScreen
    

提交回复
热议问题