views:

231

answers:

1

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