近期,公司刚刚完成一个新项目,提交1.0版本审核,上传AppStore的时候遇到了这个问题:
![](https://img.haomeiwen.com/i1421018/ed53f683d1ae6885.png)
具体描述信息:
ERROR ITMS-90475: "Invalid Bundle. Your app supports Multitasking on iPad, so you must include the UILaunchStoryboardName key in your bundle, 'cn.XXX.XXX’
解决方案是:
工程配置界面如果Main Interface为storyboard或者xib的话 需要取消勾选Requires full screen 否则的话需要勾上
![](https://img.haomeiwen.com/i1421018/e976816a5ee43b70.png)
或者在info.plist里面添加UIRequiresFullScreen字段BooleenValue设置为 NO或者YES。
![](https://img.haomeiwen.com/i1421018/5be176b986f74c28.png)
网友评论