Is it possible to make this go as granular as seconds without having to write a custom picker?
+2
A:
Hi Mike,
You have to write a custom picker to enter seconds.
UIDatePicker is constrained to the following Date Picker Modes as defined in UIDatePicker, none of which displays seconds:
typedef enum { UIDatePickerModeTime, UIDatePickerModeDate, UIDatePickerModeDateAndTime, UIDatePickerModeCountDownTimer } UIDatePickerMode;
Cheers, niels
Niels Castle
2009-10-15 08:10:27