状态栏下的iOS 9导航栏

时间:2015-12-22 04:37:45

标签: ios uinavigationitem

enter image description here

如何阻止导航栏进入状态栏并尊重状态栏的空间?

3 个答案:

答案 0 :(得分:1)

[[UIApplication sharedApplication] setStatusBarHidden:YES];

答案 1 :(得分:1)

如果您的应用在每个视图中使用foreach ($result as $code => $population) { echo "Code $code => $population\n"; } ,则当UINavigationController出现时,UINavigationController将自动置于状态栏下方(标准的20点偏离顶部)我们习惯于以前的iOS版本的屏幕。)

Check this link for details

如果您不希望状态栏隐藏它。

答案 2 :(得分:1)

在viewController中你想要隐藏satusBar:

- (BOOL)prefersStatusBarHidden {
return YES;
}