0
我使用的是UIDatePicker
在Count Down Timer
模式供用戶輸入出行時間: 的setdate在倒計時器模式下的UIDatePicker
,我可以返回的時間以秒這樣的:
@IBAction func customTimeSelected(_ sender: Any) {
print("user selected custom time: \(customeTimePicker.countDownDuration)")
}
但是如何以秒爲單位設置UIDatePicker
?
繼承人我嘗試:
let travelDate = Date(timeIntervalSinceNow: TimeInterval(5400)) // hour and a half in seconds
self.customeTimePicker.setDate(travelDate, animated: false)
然而,這會返回一個不正確的時間: