在swift中两个日期之间的定时器coutdown

时间:2018-02-21 11:51:40

标签: ios iphone swift timer

我希望在两个日期之间集成计时器选择日期,另一个是按钮标题上的当前日期,就像任何其他倒计时应用程序一样。

func countDownDate() {
    var calendar = Calendar.current
    let diffDateComponents = calendar.dateComponents([.day, .hour, .minute, .second], from: self.startDate, to: self.currentDate as Date)
    let countdown = "Days \(String(describing:diffDateComponents.day!)),  Hours: \(String(describing: diffDateComponents.hour!)), Minutes: \(String(describing: diffDateComponents.minute!)), Seconds: \(String(describing: diffDateComponents.second!))"
    print("countdown",countdown)
    var dayText = String(describing: diffDateComponents.day!) + "d "
    var hourText = String(describing: diffDateComponents.hour!) + "h "
    self.button_CreateBid.setTitle(dayText + hourText + String(describing: diffDateComponents.minute!) + "m " + String(describing: diffDateComponents.second!) + "s", for: .normal)
}


let when = DispatchTime.now() + 0.1 // change 2 to desired number of seconds
DispatchQueue.main.asyncAfter(deadline: when) {
    Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: #selector(ServiceDetailViewController.countDownDate), userInfo: nil, repeats: true)
}

1 个答案:

答案 0 :(得分:1)

我检查了你的代码及其在我的系统上工作。你可以通过一些小的改动来运行它。以下是我的代码。

@IBOutlet weak var btnTimeLabel : UIButton!

将此代码放在viewDidLoad

let when = DispatchTime.now() + 0.1 // change 2 to desired number of seconds
        DispatchQueue.main.asyncAfter(deadline: when) {
            Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: #selector(ViewController.countDownDate), userInfo: nil, repeats: true)
        }

我已在您的功能中设置了下一个日期和当前日期。

 @objc func countDownDate() {

        let dateFormatter = DateFormatter()
               dateFormatter.dateFormat = "dd-mm-yyyy" //Your date format
               dateFormatter.timeZone = TimeZone(abbreviation: "GMT+0:00") //Current time zone
               let futuredate = dateFormatter.date(from: "22-02-2018") //according to date format your date string
        var calendar = Calendar.current
        let diffDateComponents = calendar.dateComponents([.day, .hour, .minute, .second], from: futuredate!, to: Date())
        let countdown = "Days \(String(describing:diffDateComponents.day!)),  Hours: \(String(describing: diffDateComponents.hour!)), Minutes: \(String(describing: diffDateComponents.minute!)), Seconds: \(String(describing: diffDateComponents.second!))"
        print("countdown",countdown)
        var dayText = String(describing: diffDateComponents.day!) + "d "
        var hourText = String(describing: diffDateComponents.hour!) + "h "
        btnTimeLabel.setTitle(dayText + hourText + String(describing: diffDateComponents.minute!) + "m " + String(describing: diffDateComponents.second!) + "s", for: .normal)
        //print(dayText + hourText + String(describing: diffDateComponents.minute!) + "m " + String(describing: diffDateComponents.second!) + "s")
    }
相关问题