UIDeviceOrientationPortrait と UIDeviceOrientationLandscapeLeft をサポートする iPad アプリがあります。
私はこのメソッドを含めました:
- (BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft );
}
私が抱えている問題は、UI コントロールが適切にセットアップされるため、ロードのためだけに UIDeviceOrientationLandscapeLeft モードでロードする必要があることです。ロード時に一度だけ強制するにはどうすればよいですか。
私が注意したいことの1つは、これは最小iOS 5でなければならないということです.