LoginSignup
1
1

More than 1 year has passed since last update.

swiftでカウントダウンタイマーを作る

Last updated at Posted at 2021-05-03

swiftでカウントダウンタイマーを作るテンプレです

    var secondsRemaining = 60
    var timer = Timer()

    timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(updateCounter), userInfo: nil, repeats: true)
        }

    @objc func updateCounter() {
        //example functionality
        if secondsRemaining > 0 {
            print("\(secondsRemaining) seconds to the end of the world")
            secondsRemaining -= 1
        }
    }

timeIntervalというのが測る間隔値みたい

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1