I have issues showing a localized app icon with retina display support.
How could this be done?
I tried to make Icon.png and Icon@2x.png localized, then I tried to make the proj-Info.plist localized and try to 开发者_运维技巧link to different Images.
But only the Icon of the project language are being shown...
You need to create one infoplist.strings file for each of the language. For that, create language.lproj folders manually and put Infoplist.string file in each of the folder. Inside the file enter the following: CFBundleIconFile="Icon_en.png" or CFBundleIconFile = "Icon_pt.png".
精彩评论