In iOS 13, when we present a new ViewController
let newVC = NewViewController()
self.present(newVC, animated: true)
it looks like below, where it is not FullScreen, and can be swipe down to move back to the launching ViewController
To make it FullScreen, we can just use .fullScreen
as shown below.
let newVC = NewViewController()
newVC.modalPresentationStyle = .fullScreen
self.present(newVC, animated: true)
It will look like below, which is full screen. However, it doesn't allow me to swipe down to get back to the parent anymore.
Is there a way to swipe back and get back to Parent still with FullScreen on?