美文网首页
iOS icon和launch配置变化

iOS icon和launch配置变化

作者: 临川慕容吹雪 | 来源:发表于2017-11-24 22:43 被阅读25次

    最近提审发现icon,launch出现以下问题和变化:

    1.纯横屏游戏与纯竖屏游戏所使用的图片引入方式有一定区别,纯横屏游戏使用Asset Catalog导入闪屏图片资源时,可能会出现低版本iPhone没有闪屏的情况,所以使用copy bundle 依赖的方式去做图片资源依赖。参考:https://stackoverflow.com/questions/19110583/iphone-landscape-only-no-launch-image-for-ios7-r4-image-asset

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

    1: missing required icon file. the bundle does not contain an app icon for iphone/ipod touch of exactly '120 120' pixels, in .png format for ios versions >= 7.0

    2: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 seehttp://help.apple.com/xcode/mac/current/#/dev10510b1f7.

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

    3:App Store 图标添加新改变

    相关文章

      网友评论

          本文标题:iOS icon和launch配置变化

          本文链接:https://www.haomeiwen.com/subject/ddkqbxtx.html