How can I add an image to a UINavigationBar that is a UIButton? For example, take a look at the Safari app. It has some nice buttons on the bottom UINavigationBar. I’d like to put a Share button on a UINavigationBar. Does anyone know how to do this? And does anyone know where I can get a “Share” button? For instance, the type of “Share” button that pulls up an email and emails someone something.
Share
The bottom bar is a
UIToolbarand the buttons are instance ofUIBarButtonItem. You can use theinitWithImage:style:target:action:initializer for your purpose.