Getting current device language in iOS?

前端 未结 30 2732
星月不相逢
星月不相逢 2020-11-22 09:10

I\'d like to show the current language that the device UI is using. What code would I use?

I want this as an NSString in fully spelled out format. (Not

30条回答
  •  春和景丽
    2020-11-22 09:29

    For getting user device current language use the following it code it worked for me.

    NSString * myString = [[NSLocale preferredlanguage]objectAtIndex:0];
    

提交回复
热议问题