iPad Pro无法全屏打开我的应用

时间:2019-03-12 08:18:58

标签: ios xcode ipad

通过iPad pro 12.9打开我的应用程序时,会有黑边 我该如何解决?使用xcode 9.4和10.1构建应用程序,两者相同。其他iPad没问题,只有iPad Pro才出现问题

1 个答案:

答案 0 :(得分:1)

因为您没有为LaunchImage添加iPad 12.9。并且资产中没有为LaunchImage添加iPad 12.9的选项。因此,我建议您使用LaunchScreen.storyboard而不是LaunchImage

在项目中创建两个不同的LaunchScreen.storyboard(一种用于LaunchScreen~iPhone,另一种用于LaunchScreen~iPad)的更好方法。将storyboard中设置的两个info.plist添加在一起

<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UILaunchStoryboardName~ipad</key>
<string>LaunchScreeniPad</string>

然后设置在LauchScreen.storyboard中设置的原尺寸图像。并将启动屏幕文件设置为LaunchScreen〜iPhone(默认)。

enter image description here