up vote 3 down vote favorite
1
share [g+] share [fb]

How to disable or hide AM/PM in UIDatePicker from code / interface builder? I want to have 24 hours time picker mode in UIDatePicker. Please help

link|improve this question
As answered here stackoverflow.com/questions/1151335/… and here stackoverflow.com/questions/2894161/…, the picker display depends on country settings, not on language settings. In your example you are changing the language locale only. – Vladimir Grichina Jul 15 '10 at 14:50
feedback

2 Answers

AFAIK you can't (within limits of SDK). The AP/PM will disappear if the user chooses to use 24-hour format. Make your own UIPickerView in case this is important.

link|improve this answer
feedback

According to the documentation you should be able to set the locale property of UIDatePicker to a locale that uses a 24 hrs format.

NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"da_DK"];
[datePicker setLocale:locale];
[locale release];

Alas there is a bug causing both simulator and device to continue to layout the date picker according to the users international preferences.

As you suggest, you have to roll your won date picker to be able to display a 24 hrs picker.

link|improve this answer
I tried en_GB and dk_DK locale does not work in simulator nor in device. But i noticed if u set 24 hrs format in iphone settings then UIDatepicker displays 24 hr time. So should I make my own UIPickerView or is there a way to acheive this? – Binay Shrestha Jan 27 '10 at 3:46
I was wrong in my original answer (now updated) neither device nor simulator works. A bug report has been filed with Apple. For now I'd do as you suggest - roll your own. – Niels Castle Jan 27 '10 at 8:54
It is not a bug, you are only changing a language, while in reality it depends on country settings. – Vladimir Grichina Jul 15 '10 at 13:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.