Mike
Mike

Reputation: 42

iPhone Timer Picker

Is it possible to make this go as granular as seconds without having to write a custom picker?

Upvotes: 1

Views: 530

Answers (1)

Niels Castle
Niels Castle

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

Related Questions