简体   繁体   中英

How to SHOW bottombar (tab bar controller)?

I used this to hide the bottom bar

-(BOOL) hidesBottomBarWhenPushed{
    return YES;
}

Now i'm at a point where I want to NOT to hide it anymore. What method should I use?

Thanks

Take at look at Elements sample project. They do something like you want, especially in the ElementViewController.m file.

那很简单,只需使用以下命令:

[tabBar setHidesBottomBarWhenPushed:FALSE];

It took me some time putting the puzzle of John together. So here is my final result. In the .m file of my view controller I add this code:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
    // Custom initialization
    self.hidesBottomBarWhenPushed = YES;
}
return self;}

Because I use a nib file I had to override the initWithNibName method.

A really simple way:

 Class *instanceName = [[Class alloc] init];
 instanceName.hidesBottomBarWhenPushed = YES;
 ...
 [navigationController pushViewController:instanceName animated:YES];

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