Hiding UINavigationItem's bar button

大兔子大兔子 提交于 2019-11-30 17:32:53
Adrian Avendano

This works I tried it myself

self.navigationItem.leftBarButtonItem = nil;
self.navigationItem.hidesBackButton = YES;      

I'm pretty sure the only way to "hide" it is to nil it out.

self.navigationItem.leftBarButtonItem = nil;

Though it's not a perfect answer to your question, since that basically gets rid of your button instead of hiding it. You'll either have to recreate it or keep your original button around and simply set the leftBarButtonItem back to your UIBarButtonItem.

I have a easy function to make this. I have a navigation like this.

It comes form Interface Builder, it has a background image.

@IBOutlet weak var memberBtn: UIBarButtonItem!

you can hide/show it by:

func hideMemberBtn() {
    memberBtn.isEnabled = false
    memberBtn.tintColor = UIColor.clear
}
func showMemberBtn() {
    memberBtn.isEnabled = true
    memberBtn.tintColor = UIColor.white
}

It's easy but it work for me. You can change tintColor as you needed. Hope for help :]

You can use

// Hide
self.navigationItem.leftBarButtonItem = nil;

// Show
self.navigationItem.leftBarButtonItem = self.myBarButtonItem

The key is making sure that you have a strong reference to the button item before nilling leftBarButtonItem.

@property (strong, nonatomic) IBOutlet UIBarButtonItem *myBarButtonItem;

I just created my own "hide" function show below:

- (void)hideClearButton:(BOOL)hide {

    if (hide) {
        self.navigationItem.leftBarButtonItem = nil;
    }
    else {
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]
                                                 initWithTitle:NSLocalizedString(@"Clear", @"Recents")
                                                 style:UIBarButtonItemStylePlain
                                                 target:self action:@selector(clearAll:)];

    }
}

You can just call it like:

[self hideClearButton:YES]; //hide it

or

[self hideClearButton:NO];  //show it

There's nothing in the documentation to suggest bar items have a hidden property.

Why not set

self.navigationItem.leftBarButtonItem = nil; 

when the user isn't editing, then set

self.navigationItem.leftBarButtonItem = whateverBarButtonItem; 

when the user is editing? This requires either re-creating the button each time or storing it for the duration of the view's lifecycle. Neither is terribly painful, but no, not nearly as easy as a .hidden property.

Mohit Manhas

You can use

[self.navigationItem.leftBarButtonItem setEnabled:TRUE];

as there is no other way to hide it. so just disable it.

pkc456

To hide/disable

[self.navigationItem.leftBarButtonItem setEnabled:FALSE];

To show/enable

[self.navigationItem.leftBarButtonItem setEnabled:TRUE];

Well making it nil was not a option because i wanted to show it again and didnt want to create a button again.

so what i did was

 UIBarButtonItem *barButton =  (UIBarButtonItem *)self.navBar.topItem.leftBarButtonItem;
 barButton.customView.hidden = true;//Hide
 barButton.customView.hidden = false;//Show

Works for me. (my leftBarButtonItem was created using customView)

Hope it helps.

This solution work for me

UIView *myView = [[UIView alloc] initWithFrame: CGRectMake(0, 0, 300, 30)];
UIBarButtonItem *btnL = [[UIBarButtonItem alloc]initWithCustomView:myView];
self.navigationItem.leftBarButtonItem = btnL;
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!