UITabBarController 隐藏但仍留有空白
我的应用程序中有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的内容是什么,但如果它位于容器内,例如 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.