views:

21

answers:

2

Is there any way to indent the default back button on a UINavigationBar? Basically I just want to move it about 10pts right.

Thanks

A: 

I don't think there is an easy way. But you could get the navigation bar object:

UINavigationBar *navBar = [navController navigationBar];

...and maybe iterate through it's subviews. I presume you could determine which subview is the back button based on it's frame property.

Jongsma
A: 

Better hide the default back button and add a custom back button on the navigation bar.

All the Best.

Warrior
lol, I've only just got it all working the way I wanted it! :p no chance! haha, thanks for your help though.
Thomas Clayson