I have a UIViewController that contains a custom UITableView. The table has a custom UITableViewCell too.
UIViewController
UITableView
UITableViewCell
How to navigate from the
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { let vc = yourCustomVCName (nibName: "yourCustomVC nibName" , bundle : nil) self.present(vc, animated: true , completion: nil) }