简体   繁体   中英

iOS: changing the tint color of the back button?

I have a navigation controller that pushes a UIViewController. I would like to change the tint color of the back button of the navigation item when a user presses on a certain button. Is this possible? I have tried using [UIBarButtonItem appearance] setTintColor: but it only works on initialization (for example in viewDidLoad) and not otherwise.

Try this......

You need to use a UIBarButtonItem with a custom view. Something like this:

UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 70, 30)];
[button addTarget:target action:@selector(back:) forControlEvents:UIControlEventTouchUpInside];
[button setImage:[UIImage imageNamed:@"back_button.png"] forState:UIControlStateNormal];
[button setImage:[UIImage imageNamed:@"back_button_tap.png"] forState:UIControlStateHighlighted];
UIBarButtonItem *buttonItem = [[UIBarButtonItem alloc] initWithCustomView:button];

And put the button to the navigation bar, usually in a controller with UINavigationController:

self.navigationItem.leftBarButtonItem = buttonItem;

The easiest thing for me was to set the tint color for ALL uibarbutton items:

[[UIBarButtonItem appearance]setTintColor:[UIColor yourColor]];

And then explicitly setting the tintcolor for explicit navigationbuttons that I create & place on the navigationbar to other colors...

Saves me the headache of creating custom backbuttons when all I want to do is change the tint.

In the method that is called on your button click, just put [self.navigationItem.backBarButtonItem setTintColor:[UIColor *whateverColorYouWant*]] ; I haven't tested it but I'm 99% sure that would work

Edit: Just tested it, it works.

Here's a code that changes text and color of the back button:

- (void)viewDidLoad
{
    UIBarButtonItem *backButton = [UIBarButtonItem new];
    [backButton setTitle:@"Back"];
    [backButton setTintColor:[UIColor yellowColor]];
    [[self navigationItem] setBackBarButtonItem:backButton];
}

尝试这个:

[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class],[UIToolbar class], nil] setTintColor:[UIColor redColor]];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM