为什么横向模式下隐藏的TabBar会显示空白区域?

发布于 2024-12-13 20:27:51 字数 88 浏览 2 评论 0原文

当特定视图以横向显示时,我隐藏选项卡栏。它工作正常,但在视图下方显示白色空白区域。知道如何解决这个问题吗?

感谢您的帮助,

斯蒂芬

I'm hiding tabbar when a particular View shows in landscape. It works fine but shows a white blank space below the view. Any idea how to fix this ?

Thx for helping,

Stephane

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

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

发布评论

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

评论(3

゛时过境迁 2024-12-20 20:27:51

调整当前 UIView 的大小:

[self.view setBackgroundColor:[UIColor greenColor]]; // Just for checking
[self.view setFrame:CGRectMake(0.0f, 0.0f, 320.0f, 480.0f)];

您应该在方便时更改高度。

Resize your current UIView:

[self.view setBackgroundColor:[UIColor greenColor]]; // Just for checking
[self.view setFrame:CGRectMake(0.0f, 0.0f, 320.0f, 480.0f)];

You should change the height at your convenience.

一瞬间的火花 2024-12-20 20:27:51

当您推送到其他视图时,不需要选项卡栏的地方只需编写它

twitDetObj=[[TwitDetail alloc] initWithNibName:@"TwitDetail" bundle:nil];
[self.navigationController pushViewController:twitDetObj animated:YES];
self.hidesBottomBarWhenPushed=YES;
[twitDetObj release];

when you are pushing to other view,where you don't need the Tab bar just write it

twitDetObj=[[TwitDetail alloc] initWithNibName:@"TwitDetail" bundle:nil];
[self.navigationController pushViewController:twitDetObj animated:YES];
self.hidesBottomBarWhenPushed=YES;
[twitDetObj release];
三生路 2024-12-20 20:27:51

该线程经过数小时的研究解决了空白问题: 将 iPhone 设备旋转至横向时隐藏 TabBar

This thread resolved the blank space issue after hours of research: hiding TabBar when rotating iPhone device to landscape

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