标签: ios swift uitabbarcontroller
在我的appdelegate中,我在didFinishLaunchingWithOptions
didFinishLaunchingWithOptions
let tabbar = UITabBar.appearance() tabbar.hidden = true
这隐藏了主视图控制器上的标签栏,但它不在第二个连接到第一个当然的第一个标签栏上。标签栏上只有一个黑条。
我是否应该在viewcontrollers代码页上做一些具体的事情?奇怪的是,它是为第一个控制器而不是其余的控制器。
视觉:
答案 0 :(得分:0)
选中“从故事板推送时隐藏底栏”
编程
ASNPhoto *chatViewController=[self.storyboard instantiateViewControllerWithIdentifier:@"photoStoryBoard"]; chatViewController.hidesBottomBarWhenPushed=YES;