屏幕底部的空间(iOS 5)

时间:2013-12-25 14:57:57

标签: objective-c xib

只有当我把隐藏状态栏隐藏在屏幕底部时,才会出现一个空格:

enter image description here

但它没有出现在xcode中:

enter image description here

P.S:这是我打开的第二个视图:

UIViewController* flipViewController = [[UIViewController alloc] initWithNibName:@"GameController" bundle:[NSBundle mainBundle]];
[self.view addSubview:flipViewController.view];

1 个答案:

答案 0 :(得分:0)

这是由于iOS 7的状态栏。

viewDidLoad中添加以下代码:

- (void)viewDidLoad
{
    [super viewDidLoad];

    if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
        self.edgesForExtendedLayout = UIRectEdgeNone;


}