Do you know how to hide the \'back\' button in a UINavigationController? Also, how to show it back, but I guess that\'s very similar to hiding it...
Just like the ma
Add this Code
[self.navigationItem setHidesBackButton:YES];
Always use Apple Documentation for simple issues they are more straightforward and lightweight :)
Here is the syntax for Swift 3.0:
self.navigationItem.setHidesBackButton(true, animated:true)
Reference
https://developer.apple.com/reference/uikit/uinavigationitem#//apple_ref/occ/instm/UINavigationItem/setHidesBackButton:animated: