我添加了两张图片。 Default-Portrait.png和Default-Landscape.png。但每当我启动我的应用程序时,无论方向如何,都只显示纵向默认图像。
为什么会这样?
答案 0 :(得分:13)
我有同样的问题并通过将以下内容添加到Info.plist文件(来自Xcode)来解决它:
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
答案 1 :(得分:-7)
您是否添加了基于方向更换图像的代码?我猜这个应用程序只是不知道你想要什么图片,除非你告诉它。
UIInterfaceOrientation param