全屏ContainerViewController

时间:2015-11-15 13:55:10

标签: ios uicontainerview childviewcontroller

我希望添加一个全屏显示的childViewController。 这可能不隐藏导航栏吗?

由于

1 个答案:

答案 0 :(得分:0)

如果嵌入了以下代码,您可以将导航栏添加到您自己的视图中:

迅捷的方式: 隐藏它:

self.navigationController?.setNavigationBarHidden(true, animated: true)

要显示它:

self.navigationController?.setNavigationBarHidden(false, animated: true)

Objective-C方式: 隐藏:

[[self navigationController] setNavigationBarHidden:YES animated:YES];

显示:

[[self navigationController] setNavigationBarHidden:NO animated:YES];