I need to hide "< Back" button in the navigator controller, but for some reason
self.navigationItem.setHidesBackButton = true
only hides the arrow, the word "Back" remains:

What's the best way to hide navigation back button in iOS8?
Thank you
You should add this:
[self.navigationItem setLeftBarButtonItems:nil animated:YES];
[self.navigationItem setHidesBackButton:YES animated:YES];
In Swift:
self.navigationItem.setLeftBarButtonItems(nil, animated: true)
self.navigationItem.setHidesBackButton(true, animated:true)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With