Enumeration: UIDatePickerMode
Overview
The mode of the date picker.
Constant Summary
- UIDatePickerModeTime
The date picker displays hours, minutes, and (optionally) an am/pm designation. the exact items shown and their order depend upon the locale set. an example of this mode is [ 6 | 53 | pm ].available in ios 2.0 and later.declared in uidatepicker.h.
- UIDatePickerModeDate
The date picker displays months, days of the month, and years. the exact order of these items depends on the locale setting. an example of this mode is [ november | 15 | 2007 ].available in ios 2.0 and later.declared in uidatepicker.h.
- UIDatePickerModeDateAndTime
The date picker displays dates (as unified day of the week, month, and day of the month values) plus hours, minutes, and (optionally) an am/pm designation. the exact order and format of these items depends on the locale set. an example of this mode is [ wed nov 15 | 6 | 53 | pm ].available in ios 2.0 and later.declared in uidatepicker.h.
- UIDatePickerModeCountDownTimer
The date picker displays hour and minute values, for example [ 1 | 53 ]. the application must set a timer to fire at the proper interval and set the date picker as the seconds tick down.available in ios 2.0 and later.declared in uidatepicker.h.