0

I am able to customize the back button on my navigation bar, but in order for me to show the left arrow shape, do I need to create my customized image with the left arrow specifically?

Or there is a way to use the original back button with the arrow shape, while just apply my background image onto it?

Thanks in advance!

Saad
  • 8,857
  • 2
  • 41
  • 51
joe kirk
  • 700
  • 2
  • 10
  • 25

1 Answers1

0

Set yourButton the customized image with the left arrow

self.navigationItem.leftBarButtonItem =  [[[UIBarButtonItem alloc] initWithCustomView:yourButton] autorelease]; 

You cannot modify the original BACK button.

Atulkumar V. Jain
  • 5,102
  • 9
  • 44
  • 61
adali
  • 5,977
  • 2
  • 33
  • 40