通过iPad pro 12.9打开我的应用程序时,会有黑边 我该如何解决?使用xcode 9.4和10.1构建应用程序,两者相同。其他iPad没问题,只有iPad Pro才出现问题
答案 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(默认)。