I would like to know how to hide the title of a UINavigationBar.
I have a root view controller where I’d like to have a navigation bar but without any title.
I used [self setTitle:@""]; but in this case after a segue to the next view controller I cannot go back.
If I donnot set the in the storyboard and donnot set anything by code everything works perfectly except on the next view controller I have a very ugly “Back” button which I would like to set title to “Home”.
Thank you for your answers !
You can set the
property to an UIBarButtonItem of your choice – UIKit will make it nice for you automagically.