I'm working on an iOS app that must have a different name and some different images for US residents (different brand name).
I defined an en-US.lproj rep but it's never used. When I simulate an US resident I have : [[NSLocale currentLocale] locale localeIdentifier] => 'en_US', but the en.lproj is used. I tried to change (in Xcode) the 'Localization native development region' but it doesn't change anything.
I don't have any problem with the french localization.
I could do it with code but not for the app name or the Default.png.
How to make the en-US.lproj work ?
Thanks.