Xcode 10 Swift 4.2
Push-Benachrichtigung anzeigen, wenn Ihre App im Vordergrund steht -
Schritt 1: Fügen Sie den Delegaten UNUserNotificationCenterDelegate in die AppDelegate-Klasse ein.
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {
Schritt 2: Legen Sie den UNUserNotificationCenter-Delegaten fest
let notificationCenter = UNUserNotificationCenter.current()
notificationCenter.delegate = self
Schritt 3: In diesem Schritt kann Ihre App die Push-Benachrichtigung anzeigen, auch wenn sich Ihre App im Vordergrund befindet
func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .sound])
}
Schritt 4: Dieser Schritt ist optional . Überprüfen Sie, ob sich Ihre App im Vordergrund befindet und ob sie sich im Vordergrund befindet, und zeigen Sie dann die lokale PushNotification an.
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()
}
}
Lokale Benachrichtigungsfunktion -
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)
}