gpt4 book ai didi

ios - 特定日期和时间的本地通知不起作用。 swift

转载 作者:行者123 更新时间:2023-11-30 11:04:21 25 4
gpt4 key购买 nike

我试图在单击按钮时在特定日期和时间触发本地通知,但它不起作用。下面是代码:

@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!
}

提前致谢。

最佳答案

确保您已授权该应用向用户发送通知。

在您的 AppDelegateapplication(_: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)
}

关于ios - 特定日期和时间的本地通知不起作用。 swift ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52904742/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com