GithubHelp home page GithubHelp logo

customtimer's Introduction

CustomTimer

iGolaCustomTimer集常规定时器、倒计时、间隔不等定时器于一身

懒加载定时器

    /// 倒计时
    lazy var coutDownTimer = iGolaCustomTimer()

    /// 常规定时器
    lazy var timer = iGolaCustomTimer()

    /// 间隔不等定时器
    lazy var unequalTimer = iGolaCustomTimer()

开启倒计时

    coutDownTimer.startCountDownTimer(totalTime: 10) { (isOver) in
        if isOver{
            self.coutDownLabel.text = "倒计时结束了"
        }else{
            self.coutDownLabel.text = self.formatDate.string(from: Date())
        }
    }

暂停倒计时

    coutDownTimer.suspendTimer()

恢复倒计时

    coutDownTimer.resumeCountDownTimer()

取消倒计时,一旦取消则无法恢复,需要重新startCountDownTimer

    coutDownTimer.cancelTimer()

开启规定时器

    timer.startTimer(duration: 2) {
        self.timerLabel.text = self.formatDate.string(from: Date())
    }

暂停规定时器

    timer.suspendTimer()

恢复规定时器

    timer.resumeTimer()

取消规定时器,一旦取消则无法恢复,需要重新startCountDownTimer

    timer.cancelTimer()

开启间隔不等定时器

    unequalTimer.startUnEqualTimer(timeArray: timeArray) { (isOver) in
        if isOver{
            self.unequalLabel.text = self.formatDate.string(from: Date()) + "结束了"
        }else{
            self.unequalLabel.text = self.formatDate.string(from: Date())
            self.index += 1
        }
    }

暂停间隔不等定时器

   unequalTimer.suspendTimer() 

恢复间隔不等定时器

    unequalTimer.resumeUnequalTimer()

取消间隔不等定时器,一旦取消则无法恢复,需要重新startCountDownTimer

    unequalTimer.cancelTimer()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.