我读了Landscape Mode ONLY for iPhone or iPad并按照步骤操作,应用程序以横向模式打开,但每当我重新分配视图时,它再次出现在纵向模式中。我将Landscape作为唯一支持的分辨率保持正确,并且还覆盖了souldAutoRotateToInterfaceOrientation。我正在使用iOS 5.1。
感谢。
代码:
-(BOOL) shouldAutoRotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation{
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}