Example I have two UIViewController
(I'll called A and B)
In A, when I click a button, I will show B with code:
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let viewController = storyboard.instantiateViewController(withIdentifier:"BController") as! BController
present(viewController, animated: true)
I don't use the navigate ViewController in Storyboard file. So, does it have any solution to when Applicaion in B, I swipe the screen from left edge and B will dismiss.
You can imagine what I want in this image