Is there any way to indent the default back button on a UINavigationBar? Basically I just want to move it about 10pts right.
Thanks
Is there any way to indent the default back button on a UINavigationBar? Basically I just want to move it about 10pts right.
Thanks
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.
Better hide the default back button and add a custom back button on the navigation bar.
All the Best.