我有一个支持 UIDeviceOrientationPortrait 和 UIDeviceOrientationLandscapeLeft 的 iPad 应用程序。
我确实包括了这个方法:
- (BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft );
}
我遇到的问题是我需要它以 UIDeviceOrientationLandscapeLeft 模式加载,只是为了加载,因为我的 UI 控件将正确设置。我怎样才能在加载时只强制它一次。
我要注意的一件事是,这必须是最小的 iOS 5。