I have a navigation bar with a left and right button, and I need to put another button next to the right button. Does anyone know how I can go about this? Here is some code
Instead of using self.navigationItem.rightBarButtonItem, use
self.navigationItem.rightBarButtonItem
self.navigationItem.rightBarButtonItems //note the plural
This allows you to set an array of buttons rather than a single one.
See the UINavigationItem class reference for details.