只有当我把隐藏状态栏隐藏在屏幕底部时,才会出现一个空格:
但它没有出现在xcode中:
P.S:这是我打开的第二个视图:
UIViewController* flipViewController = [[UIViewController alloc] initWithNibName:@"GameController" bundle:[NSBundle mainBundle]];
[self.view addSubview:flipViewController.view];
答案 0 :(得分:0)
这是由于iOS 7的状态栏。
在viewDidLoad
中添加以下代码:
- (void)viewDidLoad
{
[super viewDidLoad];
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
self.edgesForExtendedLayout = UIRectEdgeNone;
}