Right now I have two view controllers. My problem is I don\'t know how to hide the back button after transitioning to the second view controller. Most references that I foun
You may try with the below code
override func viewDidAppear(_ animated: Bool) { self.navigationController?.isNavigationBarHidden = true }