【发布时间】:2018-06-04 19:21:44
【问题描述】:
【问题讨论】:
-
第二个 VC 是否以模态方式呈现?
-
检查您的第二个视图控制器的设置。检查
hide bottom bar when push是否未启用! ans 显示您的代码以显示新的视图控制器!
标签: ios swift uinavigationcontroller uitabbarcontroller tabbar
【问题讨论】:
hide bottom bar when push 是否未启用! ans 显示您的代码以显示新的视图控制器!
标签: ios swift uinavigationcontroller uitabbarcontroller tabbar
使用这个:
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
self.tabBarController.tabBar.hidden = false;
}
【讨论】: