2
2

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 5 years have passed since last update.

【swift3】NotificationCenterを使用してフォアグラウンド復帰時の処理を実装する

Last updated at Posted at 2017-07-03

ググってもシンプルなものがなかなか見つからなかったので:no_mouth:

applicationWillEnterForegroundで通知を作成

AppDelegate.swift
func applicationWillEnterForeground(_ application: UIApplication) {
        _ = NotificationCenter.default
        .post(name: Notification.Name(rawValue:"notification"), object: nil)
    }

viewWillAppearにて通知登録

ViewController.swift
override func viewWillAppear(_ animated: Bool) {
        _ = NotificationCenter.default
        .addObserver(self, selector: #selector(self.notification), name: Notification.Name(rawValue:"notification"), object: nil)
    }

呼び出される関数を作成

ViewController.swift
func notification(notification: Notification?) {
        print("フォアグラウンドに復帰したよ")
}
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?