TomTom
TomTom

Reputation: 2014

Localized App Icons with Retina Display for iOS

I have issues showing a localized app icon with retina display support.

How could this be done?

I tried to make Icon.png and [email protected] 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...

Upvotes: 2

Views: 3583

Answers (1)

Edmar Miyake
Edmar Miyake

Reputation: 12390

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".

Upvotes: 5

Related Questions