即使应用程序终止,swift也会显示本地通知

时间:2018-05-17 05:23:17

标签: ios swift

你好,我想发送通知,如每日提醒,即使应用程序终止不在后台工作,我怎么能这样做,这是我的代码

func soundNotification(){

    let prayers = ["fajer","dohor","asr","maghreb","isha"]

    let content = UNMutableNotificationContent()
    content.title = "\(prayers[indexOfNextPrayer + 1]) azan will be after 5 minutes"
    content.badge = 1
    content.sound = UNNotificationSound(named: "salah.mp3")
    let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 5, repeats: false)
    let request = UNNotificationRequest(identifier: "azanSoon", content: content, trigger: trigger)

    UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)

}

1 个答案:

答案 0 :(得分:1)

func soundNotification(){
    let prayers = ["fajer","dohor","asr","maghreb","isha"]
    let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 5, repeats: false)
    let content = UNMutableNotificationContent()
    content.title = "\(prayers[indexOfNextPrayer + 1]) azan will be after 5 minutes"
    content.body = " "
    content.badge = 1
    content.sound = UNNotificationSound(named: "salah.mp3")
    let request = UNNotificationRequest(identifier: "azanSoon", content: content, trigger: trigger)
    UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
        UNUserNotificationCenter.current().add(request) {(error) in
        if let error = error {
            print("error: \(error)")
        }
    }
}

在日期和时间触发本地通知。

 func scheduleNotification(at date: Date, message:String) {
    let calendar = Calendar(identifier: .gregorian)
    let components = calendar.dateComponents(in: .current, from: date)
    let newComponents = DateComponents(calendar: calendar, timeZone: .current, month: components.month, day: components.day, hour: components.hour, minute: components.minute)
    let trigger = UNCalendarNotificationTrigger(dateMatching: newComponents, repeats: false)
    let content = UNMutableNotificationContent()
    content.title = "Reminder"
    content.body = message
    content.sound = UNNotificationSound.default()
    let request = UNNotificationRequest(identifier: "textNotification", content: content, trigger: trigger)
    UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
        UNUserNotificationCenter.current().add(request) {(error) in
        if let error = error {
            print("error: \(error)")
        }
    }
}