React-Native: DatePickerIOS设置选择24小时

单于轶
2023-12-01

原帖:

https://github.com/mmazzarolo/react-native-modal-datetime-picker

 

DatePickerIOS选择24小时的方法:

How to set 24 hours in iOS ?

The is24Hour prop is only available on Android but you use a small hack for enabling it on iOS by setting the app's default timezone as en_GB. To do so, edit your AppDelegate.m file, and add [[UIDatePicker appearance] setLocale:[[NSLocale alloc]initWithLocaleIdentifier:@"en_GB"]]; to application didFinishLaunchingWithOptions

 

本人使用了第三方:react-native-modal-datetime-picker

因为该组件引入momentjs,同时还需要修改属性format为:format="MM-DD, HH:mm"  ,即可成功显示24小时制

详情:http://momentjs.com/docs/

 类似资料: