开发者

Is CFBundleIconFiles the same as Icon File?

开发者 https://www.devze.com 2023-01-14 07:52 出处:网络
I am trying to add a hi-res icon to my iPhone app. Is Is CFBundleIconFiles the same as Icon Fi开发者_C百科le in the screenshot below?

I am trying to add a hi-res icon to my iPhone app. Is Is CFBundleIconFiles the same as Icon Fi开发者_C百科le in the screenshot below?

Is CFBundleIconFiles the same as Icon File?


Have a look at the following question on Stack Overflow, this should clear things up:

How do I specify both icons for a universal iPhone/iPad app?

In short, no it's not the same. The Icon File setting is the pre-iOS4 setting, but you should keep this for iOS3 compatibility if you allow your app to install on iOS3. The Icon File setting should point to the 57x57 sized icon.

iOS4 uses the Icon Files setting, which is actually an array containing all filenames of all the icons. It scans through all the specified icons and uses the one with the closest matching size for the job. You should add your high resolution icon to this list as well as the standard 57x57 icon.


As Yannick pointed out, 'CFBundleIconFiles' is not the same as 'Icon Files', but there is another relation:

'Icon File' is the Xcode name for the key 'CFBundleIconFile' and 'Icon Files' is the Xcode name for the key 'CFBundleIconFiles'.

So those are equivalent. See Apple's Core Foundation Keys Reference.

0

精彩评论

暂无评论...
验证码 换一张
取 消