我正在为iPad创建风景应用程序,但是当我运行该应用程序时,我发现主屏幕显示为纵向。我该如何解决?

最佳答案

选择目标,在该目标中,仅选择“支持的设备方向”中的“左横向”和“右横向”选项。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    if(UIInterfaceOrientationIsLandscape(interfaceOrientation))
        return YES;
    return NO;
}

关于iphone - iPad的风景应用程序没有主屏幕风景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11390073/

10-11 13:03