Right now I have two view controllers. My problem is I don't know how to hide back button after change into second view controller. Mostly references that I found in objective-C. How I code it in swift?
Hide back button code in objective-c
[self.navigationItem setHidesBackButton:YES animated:YES];
Go to attributes inspector and uncheck show Navigation Bar to hide back button.
In case you're using a UITabBarController:
You may try with the below code
Swift
This is also found in the UINavigationController class documentation:
From the UINavigationItem class reference documentation -