swift tabbar 跳转子页面时隐藏方法
Posted 齐亚宗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift tabbar 跳转子页面时隐藏方法相关的知识,希望对你有一定的参考价值。
//注意:在push后设置self.hidesBottomBarWhenPushed=NO;
//这样back回来的时候,tabBar会恢复正常显示。
let detailCtrl = ScanViewController(nibName: "ScanViewController", bundle: nil);
//detailCtrl.hidesBottomBarWhenPushed = true
self.hidesBottomBarWhenPushed = true
self.navigationController?.pushViewController(detailCtrl, animated: true)
self.hidesBottomBarWhenPushed = false
以上是关于swift tabbar 跳转子页面时隐藏方法的主要内容,如果未能解决你的问题,请参考以下文章
swift 中,viewcontroll如果跳转到tabBar页面,我是有一个返回首页的按钮,首页就是登录页面之的页面