3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【超単純】SwiftのTimerクラスで、カウントダウンを実装してみた。

Posted at

みやこです。
swiftでタイマーを利用したかったが、便利そうなライブラリが見つけられなかったので、
標準のTimerクラスを利用して実装してみました。

アプリの実際の様子 → https://youtu.be/4K0OmSMkfDU

主に次のn個のメソッドで作られています。

  1. startTimer・・・タイマーをスタートさせる
  2. updateTimer・・・タイマーが回っている途中、変数の内容を更新させたり、ラベルに反映させたりする。
  3. setUpTimer・・・タイマーの最初の設定を行う。変数の初期化とラベルへの反映
  4. resetTimer・・・タイマーをリセットするメソッド。

ソースコード

変数の定義
//Timerクラスを利用する
    var timer = Timer()
    
    //秒と分の変数を用意
    var seconds:Int = 0
    var minutes:Int = 0
    var limit = 25 //これは制限時間です。
    
    //分のタイマーラベル。
    @IBOutlet weak var minuteLabel: UILabel!
    //秒のタイマーラベル。
    @IBOutlet weak var secondLabel: UILabel!
1.startTimer()
//タイマーをスタートさせるメソッド
    @IBAction func startTimer(_ sender: Any) {
        setUpTimer()
        timer.invalidate() //timer = nilのイメージ。
        timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(ViewController.updateTimer), userInfo: nil, repeats: true) 
        //↑1秒毎に自分のupdateTimerメソッドを繰り返し呼び出す。
    }
2.updateTimer()
//startTimerメソッドで、繰り返し呼ばれるメソッド
    @objc func updateTimer() {
        seconds -= 1
        if seconds <= -1{
            minutes -= 1
            seconds = 59
        }
        if minutes == 0 && seconds == 0{ //タイマーが終わったら・・
            resetTimer((Any).self)
        }
        if seconds < 10 { //10秒未満だったら、09, 08という風に表示する。
            secondLabel.text = String("0\(seconds)")
        } else {
            secondLabel.text = String(seconds)
        }
        minuteLabel.text = String(minutes)
        
    }
3.setUpTimer()
func setUpTimer() {
        seconds = 0
        minutes = limit
        if seconds < 10 {
            secondLabel.text = String("0\(seconds)")
        } else {
            secondLabel.text = String(seconds)
        }
        minuteLabel.text = String(minutes)
}
4.resetTimer()
//リセットボタン
    @IBAction func resetTimer(_ sender: Any) {
        timer.invalidate()
        setUpTimer()
    }

さいごに

limitの値ををユーザーが指定できるようにすれば、自由に時間を計ることが可能ですし、 タイマーが終わった時になんらかの処理を書けば、通知を入れることも可能なので、 いろいろ応用ができると思います。ひよっこのコードですが、参考にしてみてください!!!

みれくれてありがとうございました。

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?