Getting current device language in iOS?

前端 未结 30 2729
星月不相逢
星月不相逢 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:38

    Even there's a better way to get current device language. Let's try it by below code -

    NSLog(@"Current Language - %@", [[NSLocale preferredLanguages] firstObject]);
    

    Suggested by Abizern on here

提交回复
热议问题