隐藏TabBar并显示UIToolbar

发布于 2024-11-28 21:11:42 字数 87 浏览 3 评论 0原文

在我的 iPhone 应用程序启动时,如果用户未登录,我想隐藏选项卡栏并在底部显示一个工具栏,其中只有两个居中按钮(注册和登录)。

我该怎么做?

At the startup of my iPhone application if the user isn't logged in I want to hide the tabbar and display a toolbar at the bottom with only two centered buttons (signup and login).

How can I do this?

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

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

发布评论

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

评论(1

慕巷 2024-12-05 21:11:42

您可以隐藏选项卡栏

self.tabBarController.tabBar.hidden = YES;

然后您可以隐藏/取消隐藏工具栏

toolBar.hidden = NO;

登录成功后再次切换这些工具栏。

You can hide the tabBar with

self.tabBarController.tabBar.hidden = YES;

Then you can hide/unhide the toolbar

toolBar.hidden = NO;

Toggle these again once the login is successful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文