Reputation: 467
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.
But I want to change language on click event of button like
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
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