强制旋转到风景

时间:2011-03-10 04:31:06

标签: iphone uiview autorotate

我希望将我的应用轮换固定为风景...

我做过一些研究,但大多数帖子都是关于检测变化的,

我找不到任何关于强迫的事情。

有人可以帮助我吗?

2 个答案:

答案 0 :(得分:5)

试试这个

在plist中将支持的界面方向更改为Lansdscape

OR

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); // home button on right
}

一切顺利

答案 1 :(得分:1)

您可以更改项目的info.plist,以便应用程序最初始终显示Landscape。然后您可以使视图控制器仅支持横向。

希望这也有帮助

Only support for landscape Interface orientation

Launching application in landscape orientation for IPad