What's the best way to get device locale in react native (iOS)?

后端 未结 14 1670
清歌不尽
清歌不尽 2020-12-13 03:35

Something similar to [NSLocale currentLocale] in Objective-C.

14条回答
  •  猫巷女王i
    2020-12-13 04:11

    import { Platform, NativeModules } from 'react-native'
    
    const deviceLanguage =
          Platform.OS === 'ios'
            ? NativeModules.SettingsManager.settings.AppleLocale ||
              NativeModules.SettingsManager.settings.AppleLanguages[0] //iOS 13
            : NativeModules.I18nManager.localeIdentifier;
    
    console.log(deviceLanguage); //en_US
    

提交回复
热议问题