ググってもシンプルなものがなかなか見つからなかったので
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("フォアグラウンドに復帰したよ")
}