Dear Mr Brian, can I get your help please,
I still waiting your reply to my previous question
"Dear Mr Brian,
I had did what you done in episode 16 for the navigationController, In your case you do a TableView Controller, while in my case I am using ViewController, so I did like the code below but the issue still the same, the CompanyController showing first while I want the MainViewController to show first then I press on button and it bring me to the CompanyController
extension MainViewController {
override func showDetailViewController(_ vc: UIViewController, sender: Any?) {
let mainViewController = MainViewController()
navigationController?.pushViewController(mainViewController, animated: true)
}
}"