应用程序的第2(横向)画面在iOS6中变成肖像

时间:2013-05-16 15:08:04

标签: ipad ios6 landscape regression uiinterfaceorientation

我正在使用横​​向模式的iPad应用程序,只能在iOS5及以下版本下运行良好。 在iOS6上,第二个屏幕(登录屏幕)在纵向模式下突然转动。 我应该检查哪些参数?

1 个答案:

答案 0 :(得分:0)

检查以下方法。

//需要上面的ios6

- (BOOL)shouldAutorotate
{

return NO; // YES or NO as per your requirement
}

- (BOOL)supportedInterfaceOrientations
{
return UIInterfaceOrientationLandscapeRight|UIInterfaceOrientationLandscapeLeft;
}