2

I am always setting the backgroundImages of UINavigationBars, but I never worked out how to set the backgroundImage of a the back button of a UINavigationBar.

How could I do this?

max_
  • 24,076
  • 39
  • 122
  • 211

3 Answers3

2
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(0,0,36,30);
[button setBackgroundImage:[UIImage imageNamed:@"backgroundImage.png"] forState:UIControlStateNormal];

//[button setTitle:@"  Back" forState:UIControlStateNormal];
//[button.titleLabel setFont:[UIFont boldSystemFontOfSize:11]];

[button addTarget:self.navigationController action:@selector(popViewControllerAnimated:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
[self.navigationItem setLeftBarButtonItem:barButtonItem];
Oleh Kudinov
  • 2,533
  • 28
  • 30
1

I think you will have to create a custom button for the backBarButtonItem, and then customize it.

If you are looking for tutorials, then go to this question - How do you change color/image on the default backBarButtonItem? and I think you find your answer there.

For making a bar button item look like a backBarButtonItem, refer to this answer. Creating a left-arrow button (like UINavigationBar's "back" style) on a UIToolbar

Community
  • 1
  • 1
Legolas
  • 12,145
  • 12
  • 79
  • 132
  • problem is that I want to keep the 'arrow' shape of it instead of exchanging it for a rectangle.. – max_ Jun 10 '11 at 22:41
0
UIButton *backbutton = [UIButton buttonWithType:UIButtonTypeCustom];
backbutton.frame = CGRectMake(0,0,36,30);
[backbutton setBackgroundImage:[UIImage imageNamed:@"backgroundImage.png"] forState:UIControlStateNormal];

[backbutton addTarget:self.navigationController action:@selector(popViewControllerAnimated:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:backbutton];
[self.navigationItem setLeftBarButtonItem:barButtonItem];
stema
  • 90,351
  • 20
  • 107
  • 135
Jagat Dave
  • 1,643
  • 3
  • 23
  • 30