Suche…


Benutzerbenachrichtigungen

  1. Sie müssen UserNotifications importieren

     @import UserNotifications;
    

2. Erlaubnis für localNotification anfordern

let center = UNUserNotificationCenter.current()
center.requestAuthorization([.alert, .sound]) { (granted, error) in
    // Enable or disable features based on authorization.
}
  1. Jetzt aktualisieren wir die Anwendungssymbol-Ausweisnummer

     @IBAction  func triggerNotification(){
     let content = UNMutableNotificationContent()
     content.title = NSString.localizedUserNotificationString(forKey: "Tom said:", arguments: nil)
     content.body = NSString.localizedUserNotificationString(forKey: "Hello Mike!Let's go.", arguments: nil)
     content.sound = UNNotificationSound.default()
     content.badge = UIApplication.shared().applicationIconBadgeNumber + 1;
     content.categoryIdentifier = "com.mike.localNotification"
     //Deliver the notification in two seconds.
     let trigger = UNTimeIntervalNotificationTrigger.init(timeInterval: 1.0, repeats: true)
     let request = UNNotificationRequest.init(identifier: "TwoSecond", content: content, trigger: trigger)
    
     //Schedule the notification.
     let center = UNUserNotificationCenter.current()
     center.add(request)
     }
    
     @IBAction func stopNotification(_ sender: AnyObject) {
     let center = UNUserNotificationCenter.current()
     center.removeAllPendingNotificationRequests()
     }
    


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow