Icon already includes gloss effects

前端 未结 11 1633
臣服心动
臣服心动 2020-12-07 17:37

I have a problem with the gloss effect in app icon at iOS 5 beta 5, in iOS 4 it\'s show the effect not gloss, but iOS5 shows the gloss effect. I put the option Icon al

11条回答
  •  死守一世寂寞
    2020-12-07 18:11

    There are 2 keys in the Info.plist governing this.

    xCode generated the following code for you, but it doesn't offer a GUI for changing this: Open your Info.plist file (Right Click > Open As > Source Code).

    CFBundleIcons
    
        CFBundlePrimaryIcon
        
            CFBundleIconFiles
            
                myIcon.png
            
            UIPrerenderedIcon
            
        
    
    

    set the UIPrerenderedIcon = true and you are good to go (this is NOT the other UIPrerenderedIcon that also exists in this file as a boolean key!).

提交回复
热议问题