Govind Rakholiya
Govind Rakholiya

Reputation: 467

Manual language selection in localization

I am working on internationalisation in my app. It works on both language english and turkish...

I made two differnt scheme for run in different-different language.

OTOGAR is For English And TurkishOTOGAR work for turkish language

But I want to change language on click event of button likeUser can slect the language from here

so how can I select the language scheme on the click event of button? means when user press "turkish" button my app must be display in turkish language and when user press "English" button app must be display in English language.

Upvotes: 1

Views: 214

Answers (1)

Sébastien REMY
Sébastien REMY

Reputation: 2470

You can not change the language of you app using NSLocalization and the way you want. NSLocalization is always according to user device specification. You can not change it.

You have to re-write NSLocalization.

Upvotes: 0

Related Questions