如何用UIToolBar替换UITabBar?

发布于 2024-11-03 00:20:01 字数 385 浏览 0 评论 0原文

我有一个基于选项卡的应用程序。当我在 UIWebView 中时,我希望隐藏 TabBar 并替换为 UIToolBar。

现在我使用以下内容:

-(void)viewWillAppear:(BOOL)animated
{
    [self.tabBarController.tabBar setHidden:YES]; 
    self.navigationController.toolbarHidden = NO;
}

这会导致 TabBar 隐藏它所占用的空间只是空白,并且工具栏显示在这个空白的上方。我该如何解决这个问题?

在此处输入图像描述

I have a Tab Based App. When I am in a UIWebView, I want the TabBar to hide and be replaced with a UIToolBar.

Right now I utilize the following:

-(void)viewWillAppear:(BOOL)animated
{
    [self.tabBarController.tabBar setHidden:YES]; 
    self.navigationController.toolbarHidden = NO;
}

What this results in is the TabBar hiding the space it took is just blank white, and the toolbar is displayed above this blank white space. How can I fix this?

enter image description here

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

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

发布评论

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

评论(1

物价感观 2024-11-10 00:20:01

设置适当的工具栏框架,然后在应用程序的主窗口中使用 viewDidAppear 方法添加

Set appropriate frame of the toolbar and then add in the main window in the application in viewDidAppear mathod

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