Reputation: 42
Is it possible to make this go as granular as seconds without having to write a custom picker?
Upvotes: 1
Views: 530
Reputation: 8069
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
Upvotes: 3