0

Now I am currently developing a app. I want set this app to a default Language like Chinese. It means that no matter how the system Locale set,like English or Japanese.It will always show the Chinese. Is there a way to set by code?

user2506173
  • 3,959
  • 3
  • 16
  • 9

2 Answers2

1

Inside the info.plist, set the Localization native development region (CFBundleDevelopmentRegion) to Chinese and do not localize files.

Your app will be only in chinese and will appear like chinese on iTunes

slecorne
  • 1,720
  • 1
  • 11
  • 14
0

The App must be in the "Ready for Sale" state on iTunes Connect.

1) Go to your list of apps
2) Open the desired app
3) Click "Edit" on "App Information"
4) Set the Default Language and save

Jeremiah Smith
  • 740
  • 6
  • 17
  • Is there a way that I can set by objective code or at Plist file? – user2506173 Dec 10 '13 at 19:56
  • Not as far as I know, but with multiple xib files or storyboards perhaps, see here: http://stackoverflow.com/questions/12192151/change-app-language-in-ios-without-restarting-the-app – Jeremiah Smith Dec 10 '13 at 21:48