Xcode 10 스위프트 4.2
앱이 포 그라운드에있을 때 푸시 알림을 표시하려면-
1 단계 : AppDelegate 클래스에 델리게이트 UNUserNotificationCenterDelegate를 추가합니다.
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {
2 단계 : UNUserNotificationCenter 대리인 설정
let notificationCenter = UNUserNotificationCenter.current()
notificationCenter.delegate = self
3 단계 : 이 단계에서는 앱이 포 그라운드에있는 경우에도 앱에서 푸시 알림을 표시 할 수 있습니다.
func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .sound])
}
4 단계 : 이 단계는 선택 사항 입니다. 앱이 포 그라운드에 있는지 확인하고 포 그라운드에 있으면 로컬 PushNotification을 표시하십시오.
func application(_ application: UIApplication,didReceiveRemoteNotification userInfo: [AnyHashable: Any],fetchCompletionHandler completionHandler:@escaping (UIBackgroundFetchResult) -> Void) {
let state : UIApplicationState = application.applicationState
if (state == .inactive || state == .background) {
// go to screen relevant to Notification content
print("background")
} else {
// App is in UIApplicationStateActive (running in foreground)
print("foreground")
showLocalNotification()
}
}
지역 알림 기능-
fileprivate func showLocalNotification() {
//creating the notification content
let content = UNMutableNotificationContent()
//adding title, subtitle, body and badge
content.title = "App Update"
//content.subtitle = "local notification"
content.body = "New version of app update is available."
//content.badge = 1
content.sound = UNNotificationSound.default()
//getting the notification trigger
//it will be called after 5 seconds
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false)
//getting the notification request
let request = UNNotificationRequest(identifier: "SimplifiedIOSNotification", content: content, trigger: trigger)
//adding the notification to notification center
notificationCenter.add(request, withCompletionHandler: nil)
}