无论如何都要在UIDatePicker中隐藏24小时格式

时间:2016-07-13 04:57:10

标签: ios objective-c uidatepickermodetime

我正在使用UIDatePicker进行时间格式的应用程序。它以12小时格式工作,如果我将iPhone日期/时间更改为24小时格式,我只需显示12小时格式,而不是24小时格式。

无论如何都要禁用24小时格式?

1 个答案:

答案 0 :(得分:2)

将此代码用于12小时格式

NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"US"];
[self.datePicker setLocale:locale];

将此代码用于24小时格式

NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"NL"];
[self.datePicker setLocale:locale];