views:

289

answers:

2

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?

+2  A: 

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: http://stackoverflow.com/questions/1803609/how-to-add-2-buttons-into-the-uinavigationbar-on-the-right-side-without-ib

Ben Gottlieb
Ugh, that's what I thought the answer probably was :). If no one chimes in with anything better, I'll gie you the checkmark.
Andrew Johnson