Xcode 10 Swift 4.2
Uygulamanız ön planda olduğunda Anlık Bildirimi göstermek için -
Adım 1: AppDelegate sınıfına temsilci UNUserNotificationCenterDelegate ekleyin.
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {
Adım 2: UNUserNotificationCenter temsilcisini ayarlayın
let notificationCenter = UNUserNotificationCenter.current()
notificationCenter.delegate = self
3. Adım: Bu adım, uygulamanız ön planda olsa bile uygulamanızın Anında Bildirim göstermesine olanak tanır
func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .sound])
}
Adım 4: Bu adım isteğe bağlıdır . Uygulamanızın ön planda olup olmadığını ve ön planda olup olmadığını kontrol edin, ardından Yerel PushNotification'i gösterin.
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()
}
}
Yerel Bildirim işlevi -
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)
}