简体   繁体   English

iPhone应用启动图像未显示在iPad mini中

[英]iPhone app launch image not displayed in iPad mini

I add the UILaunchImages key to the Info.plist file and use a dictionary to describe each launch image, so that i can internationalize the Launch Image, My app only support iPhone: 我将UILaunchImages键添加到Info.plist文件中,并使用字典来描述每个启动图像,以便可以国际化启动图像,我的应用仅支持iPhone: 在此处输入图片说明

and my UILaunchImages like this: 和我的UILaunchImages像这样: 在此处输入图片说明

my Luanch image resource like this: 我的Luanch图片资源是这样的: 我的Luanch图片资源是这样的

every thing is ok in iPhone4s, 5, ipod, 6, 6 plus, but the launch image not display at all on iPad mini(iOS 7.0.2), did i miss something? iPhone4s,5,ipod,6、6 plus一切正常,但启动图像根本无法在iPad mini(iOS 7.0.2)上显示,我错过了什么吗?

Apps that have been designed only for iPhone may launch to a blank screen when run on an iPad. 在iPad上运行时,仅为iPhone设计的应用程序可能会启动到黑屏。 This is caused by the presence of an empty iPad specific storyboard in the app bundle as well as an iPad specific UIMainStoryboardFile key in the app's Information Property List (Info.plist) file. 这是由于该应用程序捆绑包中存在一个空的iPad特定情节提要板,以及该应用程序的信息属性列表(Info.plist)文件中存在一个iPad特定的UIMainStoryboardFile键。 Both are automatically created by the various Xcode template projects if the Universal option is selected. 如果选择了“通用”选项,则两者都将由各种Xcode模板项目自动创建。

In Xcode, Look for a file named MainStoryboard_iPad.storyboard in the file navigator. 在Xcode中,在文件导航器中查找名为MainStoryboard_iPad.storyboard的文件。 If this file is present, remove it from your project. 如果存在此文件,请将其从您的项目中删除。

In your app's Information Property List 在您应用的信息属性列表中

Look for a key named Main storyboard file base name (iPad) or UIMainStoryboardFile~ipad. 查找名为Main Storyboard文件库名称(iPad)或UIMainStoryboardFile〜ipad的键。 If this key is present, remove it. 如果存在此密钥,请将其删除。 You should also remove any other key suffixed with (iPad) or ~ipad. 您还应该删除任何其他带(iPad)或〜ipad后缀的密钥。

Finally, test your app on an iPad or in the iPad simulator and verify that it behaves as expected. 最后,在iPad或iPad模拟器上测试您的应用,并验证其性能是否符合预期。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM