如何用UIToolBar替换UITabBar?
我有一个基于选项卡的应用程序。当我在 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置适当的工具栏框架,然后在应用程序的主窗口中使用 viewDidAppear 方法添加
Set appropriate frame of the toolbar and then add in the main window in the application in viewDidAppear mathod