本文主要是介绍2.5 Picking the Date and Time with UIDatePicker,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
选择日期时间时用,默认为当前时间
UIDatePickerMode:
typedef enum {
UIDatePickerModeTime,//时间模式
UIDatePickerModeDate,//日期模式
UIDatePickerModeDateAndTime,//日期和时间模式
UIDatePickerModeCountDownTimer,//倒数模式
} UIDatePickerMode;
获取当前选择的日期NSDate *currentDate = self.myDatePicker.date;
为了在选择日期时程序作出相应,请addTarget
[self.myDatePicker addTarget:self
action:@selector(datePickerDateChanged:)
forControlEvents:UIControlEventValueChanged];
也可以限制日期的选择区间 use the maximumDate and the minimumDate properties.
UIDatePickerModeCountDownTimer 倒计时模式时,请用setCountDownDuration:设置倒计时时长
这篇关于2.5 Picking the Date and Time with UIDatePicker的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!