国外需要图表,要求无论手机是何种语言,都只能出现英文,但是日历控件UIDatePicker会默认根据手机语言转换, 中文,英文都有可能出现,查了一下
UIDatePicker的locale会有默认值,如下:
@property (nullable, nonatomic, strong) NSLocale *locale; // default is [NSLocale currentLocale]. setting nil returns to default
需要做以下变更:
datePicker.locale = [[NSLocale alloc]initWithLocaleIdentifier:@"en"];