views:

31

answers:

3

Okay, simple enough.

I'm coding up a simple web view, and I'm providing a few Safari-like controls for navigation.

Play seems to be the obvious choice for the forward button, but I'd like to have a Back Button as well, as seen in several Apple and third party apps.

Is there a way to invert the icon, so that it points backwards, or are all the apps using this setup using images to replicate this functionality?

A: 

No. There is no way to invert the icon. You need your own custom images.

Matt Long
A: 

You could use atPeek to extract the play button png from an app that uses it, and then use any image manipulation program to flip it.

chrispix
A: 

Unicode is your friend here.

Create a UIBarButtonItem (in Interface Builder or in code) and set it to "Custom" where you can enter text for the button.

Now use these Unicode characters to simulate the back & forward buttons:

◄ and ►

I use it in my apps and it looks great.

Tal Bereznitskey