I would like to be able to have a UINavigationBar with a left-hand UIBarButtonItem, two right-hand UIBarButtonItems, and a title.
I have resorted to using a UIToolBar to simulate this, but the toolbar looks slightly different than the UINavigationBar, and it also won’t bevel UIBarButtonSystemItems.
Is there a way to make a UINavigationBar with three UIBarButtonItems?
There’s no way to do this using all native graphics. However, if you’re willing to get your hands a little dirty in Acorn or Photoshop, you can create your buttons images there, and then add several buttons to a UIView, encase that in a UIBarBUttonItem, and set it to be the leftBarButtonItem.
This question tackles the item as well: How to add 2 buttons into the UINavigationbar on the right side without IB?