xcode如何从子视图中删除顶部栏

时间:2016-04-12 02:57:44

标签: ios swift subview

how can i remove the bar under the carrier

我在主视图中有一个子视图,但由于某种原因,子视图在子视图屏幕中我显示载体文本下的条形图时我不会看到此栏仅在主视图中的Im或在模拟器上预览应用程序

1 个答案:

答案 0 :(得分:-1)

如果你想隐藏statusBar

[UIApplication sharedApplication].statusBarHidden = YES;

如果你想隐藏导航栏

[self.navigationController setNavigationBarHidden:YES];