iPad のスプラッシュ スクリーンを左右に回転させたいと思います。.plist ファイルで横向きの左右の向きを有効にしました。LandscapeRight と LandscapeLeft の 4 つのファイルを追加しました。
Default-LandscapeRight@2x~ipad.png
Default-LandscapeLeft@2x~ipad.png
Default-LandscapeRight~ipad.png
Default-LandscapeLeft~ipad.png
これは問題ではありませんが、私の rootviewcontroller には次のものがあります。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight || interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
return ( UIInterfaceOrientationIsLandscape( interfaceOrientation ) );
}
スプラッシュ スクリーンがロードされますが、回転しません。私は何を間違っていますか?