LoginSignup
0
1

More than 1 year has passed since last update.

【Swift】アプリがバックグラウンドからフォアグラウンドに切り替わった事を検知する

Posted at

はじめに

フォアグラウンドになった事を判定することがあったので記事に残しておきます。

実装

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        NotificationCenter.default.addObserver(
            self,
            selector: #selector(foreground),
            name: UIApplication.willEnterForegroundNotification,
            object: nil
        )

    }
    
    @objc func foreground() {
        print("フォアグラウンド")
    }
}

おわり

NotificationCenterを有効活用できたらできることの幅が広がりそうなので今度調べてみようと思います。

0
1
0

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
0
1