Reputation: 6462
When I push a new view controller onto the navigation stack, the leftbarbuttonitem changes into the Title of the previous view controller, as expected. But I need to add an additional button to the nav bar, just to the right of the back button. I still want the back button to work as normal. Any suggestions on how to do this?
Upvotes: 2
Views: 1169
Reputation: 18368
You need to add a custom view on the navigationbar. Then, implement 2 buttons and add them on the custom view, one for back button, and one for additional button you want.
The navigationBar can be obtained by the property of UINavigationController.
Edit:
UINavigationBar class Reference, it is a sub-class of UIView.
Upvotes: 2