Getting current device language in iOS?

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

    Two letters format. Apple uses the ISO standard ISO-3166.

    NSString *localeCountryCode = [[NSLocale autoupdatingCurrentLocale] objectForKey:NSLocaleCountryCode];
    

提交回复
热议问题