ios 提交app store 报错 error itms 90096 怎么办

2025-04-07 14:59:37
推荐回答(1个)
回答1:

1.加入启动画面图片,320*568 png图片
2.iphone5: 拷贝大于该尺寸的图片,加入到项目文件夹根目录,重命名为 Default-568h@2x.png

Info.plist
在info.plist中添加的UILaunchImageName需要对应在工程目录的根目录中添加的文件名

apple官方文档
https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW1
查找UILaunchImageName
原话是:
A string containing the name of the PNG image file.
字符串,一个PNG图片文件名字。
The image file must reside at the top level of the app bundle.
文件必须在项目文件夹的根目录(的最顶层?第一个文件?我的是放在第一个)。
The name you specify for this key should not include a filename extension, nor should it include modifiers such as @2x, -568h, ~iphone, or ~ipad.
在这个KEY值里指定的文件名,不能包含扩展名,去掉其他后缀,比如 @2x, -568h, ~iphone, or ~ipad.
On disk, your image filenames may still include the @2x, -568h, ~iphone, or ~ipad modifiers as appropriate, although they are not required.
实际的文件名仍然包括这些后缀,@2x, -568h, ~iphone, or ~ipad等等。
The system automatically considers such modifiers when choosing which file to load.
系统会自动考虑选择哪个带后缀的文件。