将UIView控制器推送到UITabBar上方
我有一个UIViewController
,叫做ListVC
。ListVC
有一个UITabBar
,用户可以用它来切换选项卡。它还具有UINavigationController
。
ListVC
中,我有一个按钮,当按下它时(用NavigationController
),我想按下一个名为DetailVC
的新的ViewController。我想演示DeatilVC
而不显示UITabBar
。
问题是,当我使用pushViewController(animated)
方法时,视图仍然具有UITabBar
。
如何将视图推到UITabBar
上方(我不想以情态方式呈现它)?
从聊天列表中选择聊天时,您可以在Whatsapp
上看到它的一个示例。图片:
编码:
self.navigationController?.pushViewController(detailVC, animated: true)
谢谢!
解决方案
推送时写下代码:
yourViewController.hidesBottomBarWhenPushed = true
您还可以从情节提要中隐藏推送时的选项卡栏。选择您要推送的查看控制器,然后选中推送时隐藏底栏:
相关文章