UITabBarController 隐藏但仍留有空白

发布于 2024-11-30 05:29:40 字数 188 浏览 1 评论 0原文

我的应用程序中有 UITabBarController 。 在特定视图中,我想隐藏选项卡栏并显示直到下一行的内容。

为此,我使用了视图中的代码

-(void)viewWillappear{

   [self.tabBarController.tabBar setHidden:YES];

}

I have UITabBarController in my app.
In a particular view I want to hide the tabbar and display the content up to the below line.

For that I used the code in the view

-(void)viewWillappear{

   [self.tabBarController.tabBar setHidden:YES];

}

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

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

发布评论

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

评论(1

岁月静好 2024-12-07 05:29:40

这取决于您的内容是什么,但如果它位于容器内,例如 UIView,您可以将 autoResizingMask 更改为


myView.autoresizingMask = UIViewAutoresizingFlexibleHeight;

它应该做正确的事情。

It depends what your content is, but if it's inside a container, like a UIView, you can change the autoResizingMask to be


myView.autoresizingMask = UIViewAutoresizingFlexibleHeight;

and it should do the right thing.

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