作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我正在开发的应用程序中,有一个选项可以触发通知 x 在为所述通知设置的实际时间之前的时间量。例如,我将提醒设置为 10:00。但是在应用程序的本地设置中,我将通知设置为在设置时间前 10 分钟触发。因此,在本例中,通知将在 9:50 触发。
现在,我可以在设置个人通知时间时执行上述操作。但我想做的是在为其设置的实际时间之前触发所有待处理的通知。
这是我用来设置通知的函数:
func scheduleNotification(at date: Date, identifier: String, threadIdentifier: String, body: String) {
let calendar = Calendar(identifier: .gregorian)
let components = calendar.dateComponents(in: .current, from: date)
let newComponents = DateComponents(calendar: calendar, timeZone: .current, year: components.year, month: components.month, day: components.day, hour: components.hour, minute: components.minute)
let trigger = UNCalendarNotificationTrigger(dateMatching: newComponents, repeats: false)
let content = UNMutableNotificationContent()
content.title = "TestNotification"
content.body = body
content.threadIdentifier = threadIdentifier
content.sound = UNNotificationSound.default()
let request = UNNotificationRequest(identifier: identifier, content: content, trigger: trigger)
UNUserNotificationCenter.current().add(request) {
error in
if let error = error {
print("Error in delivering notification. Error: \(error.localizedDescription)")
}
}
}
日期来自日期选择器设置的日期。我尝试使用以下代码更改触发器属性:
UNUserNotificationCenter.current().getPendingNotificationRequests { (requests) in
for request in requests {
request.trigger = UNTimeIntervalNotificationTrigger(timeInterval: 10*60, repeats: false)
}
}
但现在我收到一条错误消息,提示“trigger”是一个只获取属性。
最佳答案
无法更改已安排通知的触发时间,您可以删除所有通知并重新安排
关于ios - 在为其设置的时间之前触发所有待处理的通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48827567/
我是一名优秀的程序员,十分优秀!