Abhijith
Abhijith

Reputation: 3394

multiple language selection options inside an iPhone App

I've found some similar questions. But neither the questions, nor the answers clarified my problem.

I want to implement an option from which the user can select a language of his/her choice inside an iPhone application. (Localization is not the stuff I need) Upon selection of a language, the app should be translated to the selected language.

How can this be implemented ?

I want the users to select the language, not to use the system language through localization.

Upvotes: 0

Views: 369

Answers (1)

Quang Hà
Quang Hà

Reputation: 4746

First of all, you need to create language files (strings/xml/plist ... depend on you) Second, make a screen for user choosing language, save chosen language information to NSUserDefaults.

Finally, write a method for checking saved language in NSUserDefault and reading strings/xml/plist.

Google more, do those steps, and post your problems that you meet when working here, i will help in detail :)

Upvotes: 1

Related Questions