We would like to prevent swipe-to-dismiss to happen on iOS13 because some users are dismissing surveys by mistake. It can be easily achieve doing
viewController.isModalInPresentation = true
but since we don't have a reference to the ViewController, we can't make the change.
We would like to prevent swipe-to-dismiss to happen on iOS13 because some users are dismissing surveys by mistake. It can be easily achieve doing
viewController.isModalInPresentation = true
but since we don't have a reference to theViewController
, we can't make the change.Thanks in advance.