Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用UIDatePicker时间格式进行申请。它以 12 小时格式工作,如果我将 iPhone 日期/时间更改为 24 小时格式,我只需要显示 12 小时格式,而不是 24 小时格式。
UIDatePicker
反正有没有禁用24小时格式?
将此代码用于 12 小时格式
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"US"]; [self.datePicker setLocale:locale];
将此代码用于 24 小时格式
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"NL"]; [self.datePicker setLocale:locale];