When a button is pressed I want to segue between two view controllers by using a Modal Transition style CoverVertical and then dismiss it. There is allot of info ou
CoverVertical
Swift 5:
present(UIViewController(), animated: true, completion: nil) dismiss(animated: true, completion: nil)
Swift 2.2:
self.presentViewController(true, completion: nil)
Hide/dismiss a view controller:
self.dismissViewControllerAnimated(true, completion: nil)