在横向模式下隐藏标签栏

发布于 2024-12-11 01:27:54 字数 140 浏览 0 评论 0原文

我正在开发一个为每个视图使用选项卡栏的应用程序。 (iPhone 应用程序)。

其中一个视图是用户可以拍照的相机视图。当用户更改为横向模式时,有没有办法隐藏位于屏幕底部的选项卡栏?那么切换到纵向模式时标签栏可以重新出现吗?

提前致谢。

I am working on an app that uses tab bar for each view. (iphone app).

One of the view is a camera view where the user can take picture. Is there a way to hide the tab bar located bottom of the screen when the user changes to landscape mode? Then tab bar can reappear when it switches to portrait mode?

Thanks in advance.

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

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

发布评论

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

评论(2

半枫 2024-12-18 01:27:54

使用 UIViewControllers 委托方法: - (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientationuration:(NSTimeInterval)duration

每次方向改变时都会调用它。然后,一个简单的 if 语句应该检查并决定何时将选项卡栏隐藏,如下所示:

伪代码:

if (toInterfaceOrientation  == landscape)
   [[self tabbarcontroller]tabbar sethidden:YES];
else
   [[self tabbarcontroller]tabbar sethidden:NO];

Use the UIViewControllers delegate method: - (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration

It will get called everytime the orientation changes. A simple if statement should then check and decide when to set the tabbar hidden like so:

pseudo code:

if (toInterfaceOrientation  == landscape)
   [[self tabbarcontroller]tabbar sethidden:YES];
else
   [[self tabbarcontroller]tabbar sethidden:NO];
古镇旧梦 2024-12-18 01:27:54
if (toInterfaceOrientation  == landscape)
   self.tabBarController.tabBar.hidden = YES;
else
   self.tabBarController.tabBar.hidden = NO;
if (toInterfaceOrientation  == landscape)
   self.tabBarController.tabBar.hidden = YES;
else
   self.tabBarController.tabBar.hidden = NO;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文