将 UIDatePicker countDownTimer 默认值设置为 1 分钟
Setting UIDatePicker countDownTimer default value to 1 minute
我的应用程序中有一个 UIDatePicker
和 countDownTimer
模式。
我希望默认日期为 0 hours, 1 minute
。我试图通过添加以下行来做到这一点:
self.datePicker.date = Date()
但结果是计时器格式的当前时间。例如,如果时间是 10:55am,则计时器显示 10 hours, 55 minutes
。
如何将计时器默认值设置为 0 hours, 1 minute
?
谢谢!
您只需设置 countDownDuration
属性。正如 docs 所说,
Use this property to get and set the currently selected value when the date picker’s mode property is set to countDownTimer.
pickerView.countDownDuration = 60
我的应用程序中有一个 UIDatePicker
和 countDownTimer
模式。
我希望默认日期为 0 hours, 1 minute
。我试图通过添加以下行来做到这一点:
self.datePicker.date = Date()
但结果是计时器格式的当前时间。例如,如果时间是 10:55am,则计时器显示 10 hours, 55 minutes
。
如何将计时器默认值设置为 0 hours, 1 minute
?
谢谢!
您只需设置 countDownDuration
属性。正如 docs 所说,
Use this property to get and set the currently selected value when the date picker’s mode property is set to countDownTimer.
pickerView.countDownDuration = 60