【swift3】NotificationCenter를 사용하여 포그라운드 복귀시 처리 구현
applicationWillEnterForeground로 알림 만들기
AppDelegate.swiftfunc applicationWillEnterForeground(_ application: UIApplication) {
_ = NotificationCenter.default
.post(name: Notification.Name(rawValue:"notification"), object: nil)
}
viewWillAppear에서 알림 등록
ViewController.swiftoverride func viewWillAppear(_ animated: Bool) {
_ = NotificationCenter.default
.addObserver(self, selector: #selector(self.notification), name: Notification.Name(rawValue:"notification"), object: nil)
}
호출되는 함수 만들기
ViewController.swiftfunc notification(notification: Notification?) {
print("フォアグラウンドに復帰したよ")
}
Reference
이 문제에 관하여(【swift3】NotificationCenter를 사용하여 포그라운드 복귀시 처리 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/KOH_TA/items/c795c634d7e6912a1a35
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
func applicationWillEnterForeground(_ application: UIApplication) {
_ = NotificationCenter.default
.post(name: Notification.Name(rawValue:"notification"), object: nil)
}
ViewController.swift
override func viewWillAppear(_ animated: Bool) {
_ = NotificationCenter.default
.addObserver(self, selector: #selector(self.notification), name: Notification.Name(rawValue:"notification"), object: nil)
}
호출되는 함수 만들기
ViewController.swiftfunc notification(notification: Notification?) {
print("フォアグラウンドに復帰したよ")
}
Reference
이 문제에 관하여(【swift3】NotificationCenter를 사용하여 포그라운드 복귀시 처리 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/KOH_TA/items/c795c634d7e6912a1a35
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
func notification(notification: Notification?) {
print("フォアグラウンドに復帰したよ")
}
Reference
이 문제에 관하여(【swift3】NotificationCenter를 사용하여 포그라운드 복귀시 처리 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/KOH_TA/items/c795c634d7e6912a1a35텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)