Foreground alert
-
[ios - Swift] Foreground Push 알림 사용 (UNUserNotificationCenter 2/2)ios 2020. 12. 6. 13:29
지난 글에서 알림을 Push 하는 것을 배웠습니다. 알림이 백그라운드 상태에서만 동작하기 때문에 이번 글에서는 포그라운드 상태에서 알림을 수신받을 수 있도록 코드를 추가해 보도록 하겠습니다. UNUserNotificationCenter 사용법을 모르신다면 이곳에서 확인해 주세요. 1. userNotificationCenter 추가 앱이 포그라운드에서 실행되는 동안 도착한 알람을 처리하는 델리게이트입니다. UNUserNotificationCenterDelegate에 다음 코드를 추가해 줍니다. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletion..