Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can the app icon and default screen be localized in iPhone? Has anyone tried it?

In theory it should be possible as they're just image resources, but I found no explicit mention of this in the documentation, and I wouldn't like to have my app rejected or failing for this.

share|improve this question

3 Answers

up vote 24 down vote accepted

Official documentation quote:

"An iPhone application should be internationalized and have a language.lproj directory for each language it supports. In addition to providing localized versions of your application’s custom resources, you can also localize your application icon (Icon.png), default image (Default.png), and Settings icon (Icon-Settings.png) by placing files with the same name in your language-specific project directories. Even if you provide localized versions, however, you should always include a default version of these files at the top-level of your application bundle. The default version is used in situations where a specific localization is not available."

share|improve this answer
Thanks. I was looking in Internationalization Programming Topics. – hpique Apr 23 '10 at 17:27
Link is outdated. – Jonny Oct 22 '12 at 8:32

It was buggy before but Apple fixed it.

share|improve this answer

I'm trying to do the same, and I found this:

Until yesterday though I was never totally sure it was not possible. Then I spotted this thread in the Apple developer forums. There is a post by Bill Dudney, author of the excellent iPhone SDK Development book from Pragmatic Programmers and now an Apple employee. Bill confirms that localizing the application icon is not currently supported and suggests raising an enhancement request.

source: http://useyourloaf.com/blog/2010/12/16/localizing-iphone-app-icon-is-not-supported.html

Cheers.

share|improve this answer
Thanks for this. Very frustrating and absolutely critical to our sales. Do you think I will get rejected for releasing 2 apps as long as I restrict regions (i.e they dont overlap?) So disappointing... – Arbel Jun 5 '12 at 6:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.