我希望能够将我的 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 ) );
}
启动画面会加载,但不会旋转。我究竟做错了什么?