使用UITabBarViewCOntroller时隐藏tabbar

来源:互联网 发布:淘宝网卖家开店流程 编辑:程序博客网 时间:2024/04/29 09:58

在viewController中写入

 UITabBarController *tab =(UITabBarController *)self.parentViewController;

    tab.tabBar.hidden =YES; 即可隐藏

0 0