views:

112

answers:

1

I am trying to create a UIBarButtonItem that looks like the normal Apple ones, but I'd like to include an image and a piece of text.

As far as I can tell, you can't specify both an image and a title (the image shows but the title doesn't if you set both).

Also, if you use a customView, then you lose the BarButtonItem look and feel.

What's the best thing to do here? Mimic the artwork and use a customView?

+1  A: 

Mimic the artwork and use a custom view is what we did with our apps.. Seems to be the only way.

Jasarien