在横向模式下隐藏标签栏
我正在开发一个为每个视图使用选项卡栏的应用程序。 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 UIViewControllers 委托方法:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientationuration:(NSTimeInterval)duration
每次方向改变时都会调用它。然后,一个简单的 if 语句应该检查并决定何时将选项卡栏隐藏,如下所示:
伪代码:
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: