如何显示底部栏(标签栏控制器)?

发布于 2024-08-01 21:15:31 字数 140 浏览 6 评论 0原文

我用它来隐藏底部栏

-(BOOL) hidesBottomBarWhenPushed{
    return YES;
}

现在我不想再隐藏它了。 我应该使用什么方法?

谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

涙—继续流 2024-08-08 21:15:31

查看 Elements 示例项目。 它们会执行您想要的操作,尤其是在 ElementViewController.m 文件中。

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

自演自醉 2024-08-08 21:15:31

这很简单,只需使用这个:

[tabBar setHidesBottomBarWhenPushed:FALSE];

Thats very simple, just use this:

[tabBar setHidesBottomBarWhenPushed:FALSE];
桜花祭 2024-08-08 21:15:31

我花了一些时间才把约翰的谜题拼凑起来。 这是我的最终结果。 在视图控制器的 .m 文件中,我添加了以下代码:

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

因为我使用 nib 文件,所以我必须重写 initWithNibName 方法。

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.

为你鎻心 2024-08-08 21:15:31

一个非常简单的方法:

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

A really simple way:

 Class *instanceName = [[Class alloc] init];
 instanceName.hidesBottomBarWhenPushed = YES;
 ...
 [navigationController pushViewController:instanceName animated:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文