I have a UIViewController that contains a custom UITableView. The table has a custom UITableViewCell too.
UIViewController
UITableView
UITableViewCell
How to navigate from the
Here is a complete answer:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { let newViewController = NewViewController() self.navigationController?.pushViewController(newViewController, animated: true) }