how to change Application language on run time using Two Button in iphone SDK?

前端 未结 7 1297
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-17 06:30

i am building up a project in ios platform and want to use two language in this application and also want . the user can change the language on Runtime suppose we can ta

相关标签:
7条回答
  • 2020-12-17 07:16

    This is very good and the language is changed within the app and also when device language changes. I used this in many apps.

    For localization we generally use

     NSLocalizedString(@"hello",@"Hello World"); 
    

    in the custom implementation they have something similar like this

     AMLocalizedString(@"hello",@"Hello World");
    
    0 讨论(0)
提交回复
热议问题