我试图在按钮单击时在特定的日期和时间触发本地通知,但是它不起作用。下面是代码:
@IBAction func setReminderBtnPressed (_ sender: UIButton) {
var dateString = String()
dateString = "2018-10-20 18:11:00"
//let date = Date(timeIntervalSinceNow: 60) //Working Fine
let date = globalMethods.convertStringToDate(dateStr: dateString) //log 2018-10-20 10:11:00 +0000
let content = UNMutableNotificationContent()
content.title = "Don't forget"
content.body = "Buy some milk"
content.sound = UNNotificationSound.default()
let triggerDate = Calendar.current.dateComponents([.year, .month, .day, .hour, .minute, .second], from: date) //log ▿ year: 2018 month: 10 day: 20 hour: 18 minute: 11 second: 0 isLeapMonth: false
let trigger = UNCalendarNotificationTrigger(dateMatching: triggerDate, repeats: false)
let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger)
UNUserNotificationCenter.current().add(request, withCompletionHandler: { (error) in
if let error = error {
// Something went wrong
print(error)
}
})
}
func convertStringToDate(dateStr: String) -> Date {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
dateFormatter.timeZone = TimeZone.current// (abbreviation: "GMT+0:00")
let dateFromString = dateFormatter.date(from: dateStr)
print("dateFromString: ", dateFromString!)
return dateFromString!
}
谢谢。
答案 0 :(得分:0)
请确保您已授权该应用向用户发送通知。
在您的 AppDelegate 的application(_:didFinishLaunchingWithOptions:)
中,请求授权:
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (success, error) in
if let error = error {
debugPrint("Error: \(error)")
}
}
UNUserNotificationCenter.current().delegate = self
然后,在您的 AppDelegate 中确认UNUserNotificationCenterDelegate
,并实现该方法:
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler(.alert)
}