iOS how to simple return back to previous presented/pushed view controller programmatically?
You can easily extend functionality of any inbuilt classes or any other classes through extensions. This is the perfect use cases of extensions in swift.
You can make extension of UIViewController like this and use the performSegueToReturnBack function in any UIViewController
Swift 2.0
extension UIViewController {
func performSegueToReturnBack() {
if let nav = self.navigationController {
nav.popViewControllerAnimated(true)
} else {
self.dismissViewControllerAnimated(true, completion: nil)
}
}
}
Swift 3.0
extension UIViewController {
func performSegueToReturnBack() {
if let nav = self.navigationController {
nav.popViewController(animated: true)
} else {
self.dismiss(animated: true, completion: nil)
}
}
}
Note:
Someone suggested that we should assign _ = nav.popViewControllerAnimated(true)
to an unnamed variable as compiler complains if we use it without assigning to anything. But I didn't find it so.
Best answer is this: _ = navigationController?.popViewController(animated: true)
Taken from here: https://stackoverflow.com/a/28761084/2173368