1

我有一个针对 iOS 5.1 的完全空的单视图应用程序,我试图让该应用程序仅在横向模式下工作。

在项目摘要屏幕中,我选择了横向选项和取消选择纵向选项。

我在 info.plist 中验证了只出现横向。

在情节提要中,我选择了视图控制器转到模拟指标并选择横向作为方向。

当应用程序最初打开时,会以横向模式显示黑屏。当显示纯白色视图时,它处于纵向模式。我已经阅读了许多帖子,但无法找到解决此问题的方法。

我觉得我忽略了一些简单的事情,但是在过去,当我想在横向模式下制作应用程序时,我只是简单地选择了横向并且它起作用了。

任何建议将不胜感激。

@interface ViewController ()

@end

@implementation ViewController



- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
4

1 回答 1

1

您是否在根视图控制器中实现了以下功能?

    - (NSUInteger)supportedInterfaceOrientations
    {
        return UIInterfaceOrientationMaskLandscapeLeft;
    }

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/RespondingtoDeviceOrientationChanges/RespondingtoDeviceOrientationChanges.html

于 2012-12-23T22:25:07.657 回答