我正在试着让我的启动屏幕在iPad上加载正确的方向。横向png加载很好,肖像也一样,但是倒立的肖像总是出现在右侧向上(当它应该是倒立的时候)。我的PNG命名如下:
Default-totalitupsidedown.png格式
默认-横向.png
默认.png
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationPortrait</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
还有什么我可以试试的吗?这个应用程序是用openframeworksapi编写的,如果这有区别的话。另外,我尝试省去了Default-cratitoupsidedown.png,这样默认的肖像图像会自动旋转,但得到了相同的结果。