I heard somewhere of an workaround by adding the following files to your xcode project:
- Icon.png - 57x57 pixels application icon for standard resolution iPhone
- [email protected] - 114x114 pixels application icon for high resolution iPhone 4
- Icon-72.png - 72x72 pixels application icon for iPad
- Icon-Small.png - 29x29 pixels settings icon for standard resolution iPhone
- [email protected] - 58x58 pixels settings icon for high resolution iPhone
- Icon-Small-50.png - 50x50 pixels settings icon for iPad
Then setup your CFBundleIconFile to "Icon" (without extention).
The compiler will put a warning because your icon does not have an extention. If you just ignore it - it will work like a charm - UNTIL YOU WANT TO UPLOAD YOUR BINARY!
If you upload your binary through webinterface everything is working fine - but if you use the "apploader" it will not upload your app because of the missing extention..
is there a known way how to setup correctly the icons so you can use it for iPhone3 and iPhone4?
There is a "CFBundleIconFiles" Key for iPhone 3.2 and later - is it possible to use both?