基于Windows的iPad应用程序方向

时间:2011-07-27 07:21:34

标签: objective-c ipad screen-rotation

我想创建基于iPad窗口的应用程序,默认支持方向Windows应用程序不支持如何在iPad中基于Windows的应用程序中启用方向支持。

谢谢

1 个答案:

答案 0 :(得分:0)

窗口没有旋转功能。它以纵向模式显示。如果您想要使用设备旋转某些内容,则应使用UIViewController。它必须实现方法shouldAutorotateToInterfaceOrientation并为您的方向返回true或者为所有方向移除它。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

您还应该在项目设置(ProjectName-Info.plist)中更改它。