IOS: setting the default language in xcode for my application

I started my xcode project and I have the following settings:

enter image description here

In xcode 5, it adds this β€œbase” language, but I don’t understand how it works. I want to set as default English, not Italian; for example, if the user installed his device in Spanish or French, he should see the application in English, and not in Italian; Could you help me?

thanks

+6
source share
1 answer

SOLVE!!!

you must set the "base" in in the plist file section:

Localization native development region 

and set the Storyboard to "base" only; for another language only in Localizable String

when you localize the file, you must install the base (for the default language) and the other language that you want to use.

In the localization (photo in my question) the base and the whole language that you want to use should be indicated

+11
source

All Articles