I am trying to dismiss a ViewController in swift by calling dismissViewController in an IBAction @IBAction func cancel(sender: AnyObject) { self.dismissViewControllerAnimated(false, completion: nil) println("cancel") } @IBAction func done(sender: AnyObject)...
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...