iOS icon(图标),launch(闪屏)图片标准

注意:
1.纯横屏游戏与纯竖屏游戏所使用的图片引入方式有一定区别,纯横屏游戏使用Asset Catalog导入闪屏图片资源时,可能会出现低版本iPhone没有闪屏的情况,所以使用copy bundle 依赖的方式去做图片资源依赖。参考

2.苹果最新的要求icon必须以asset的方式添加依赖,否则可能会删掉itunes中的bundle,并且回复错误:

Missing Info.plist value - A value for the Info.plist key 'CFBundleIconName' is missing in the bundle 'com.GF.palacehy3krkr.ftkios.app'. Apps built with iOS 11 or later SDK must supply app icons in an asset catalog and must also provide a value for this Info.plist key. For more information see http://help.apple.com/xcode/mac/current/#/dev10510b1f7.

3.重要提醒,参考

tmp12931aaf.png

icon标准

尺寸 用途
57*57 iOS6.1及以下iPhone,iPod-Touch使用
72*72 iOS6.1及以下iPad使用
76*76 iPad非Retina屏使用
114*114 iOS6.1及以下iPhone,iPod-Touch Retina屏使用
120*120 iPhone,iPod-Touch Retina屏使用
144*144 iOS6.1以下iPad Retina屏使用
152*152 iPad Retina屏使用
167*167 iPad Pro Retina屏使用
180*180 iPhone 5.5,iPhone X 机型使用
1024*1024 Xcode 9新加,用于itunes 后台显示

launch(闪屏) 标准(横屏)

尺寸 用途
320 * 480 iPhone 3.5 非Retina屏使用
640 * 960 iPhone 3.5 Retina屏使用
640 * 1136 iPhone 4.0 Retina屏使用
1024 * 768 iPad 非Retina屏使用
2048 * 1536 iPad Retina屏使用
2436 × 1125 iPhone X屏使用
750 × 1334 iPhone 4.7 Retina屏使用
2208 × 1242 iPhone 5.5 Retina屏使用
1242 × 2208 iPhone 5.5 Retina屏使用
1125 × 2436 iPhone X屏使用

launch(闪屏) 标准(竖屏)

尺寸 用途
320 * 480 iPhone 3.5 非Retina屏使用
640 * 960 iPhone 3.5 Retina屏使用
640 * 1136 iPhone 4.0 Retina屏使用
1136 * 640 iPhone 4.0 Retina屏使用
750 *  1334 iPhone 4.7 Retina屏使用
1242  *  2208 iPhone 5.5 Retina屏使用
2208  *  1242 iPhone 5.5 Retina屏使用
1125 * 2436 iPhone X Retina屏使用
2436 * 1125 iPhone X Retina屏使用
1024 * 768 iPad 非Retina屏使用
2048 * 1536 iPad Retina屏使用
768*1024 iPad 非Retina屏使用
1536 × 2048 iPad Retina屏使用
2224 * 1668 iPad Pro 10.6 使用
2732 * 2048 iPad Pro 12.9 使用

参考:

https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/#app-icon-sizes

https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/launch-screen/

https://developer.apple.com/library/content/qa/qa1686/_index.html#//apple_ref/doc/uid/DTS40009882-CH1-MIGRATE

关于icon怎么配置和出现问题可以参考这个文档比价全面:https://developer.apple.com/library/content/qa/qa1686/_index.html http://help.apple.com/xcode/mac/current/#/dev10510b1f7

你可能感兴趣的:(iOS icon(图标),launch(闪屏)图片标准)