I send the user over to a page on a button click. This page is a UITableViewController.
Now if the user taps on a cell, I would like to push him ba
In the case where you presented a UIViewController from within a UIViewController i.e...
UIViewController
// Main View Controller self.present(otherViewController, animated: true)
Simply call the dismiss function:
dismiss
// Other View Controller self.dismiss(animated: true)