I\'m using the same UIDatePicker
instance to set three different values. Two of them are dates and the last is a time (e.g. 1:05).
My issue is regarding
The count-down timer is intended for setting a time for count-down. So, zero simply makes no sense. Obviously the minimum value is constrained to 1 minute.
There is one strange behavior though: if you set the interval for the timer to more than 1 minute, you are able to select 0, but get 1 inside your code. When the interval is 1 minute, you notice that you cannot select 0 minutes in the picker; it snaps back. I consider the former behavior a bug. You should never be able to select 0 minutes, no matter how big the interval is.
use UIDatePickerModeTime instead of count-down instead to select 00, but surely it will look some different from count-down, have a look:
_datePicker.datePickerMode = UIDatePickerModeTime;
_datePicker.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"NL"];