我正在使用 UNUserNotification 向用户发送本地通知。我想首先在我从时间选择器计算的开始时间发送通知。在第一次通知之后,我想每 15 分钟发送一次提醒。有没有办法为日历和时间间隔设置触发器?
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "HH"
let hour = dateFormatter.string(from: _notificationTime)
dateFormatter.dateFormat = "mm"
let minutes = dateFormatter.string(from: _notificationTime)
var dateComponents = DateComponents()
dateComponents.hour = Int(hour)
dateComponents.minute = Int(minutes)
let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: true)
let content = UNMutableNotificationContent()
content.body = "Hi " + settings.username + ".\nHast du deine Pille schon genommen?"
content.categoryIdentifier = "takePill"
content.userInfo = ["customData": "takePill"]
content.sound = UNNotificationSound.default()
if let path = Bundle.main.path(forResource: "DontForget", ofType: "PNG") {
let url = URL(fileURLWithPath: path)
do {
let attachment = try UNNotificationAttachment(identifier: "DontForget", url: url, options: nil)
content.attachments = [attachment]
} catch {
print("The attachment was not loaded.")
}
}
let pillTakenAction = UNNotificationAction(identifier: "pillTakenAction", title: "Pille eingenommen", options: [])
let pillTakenCategory = UNNotificationCategory(identifier: "pillTakenCategory", actions: [pillTakenAction], intentIdentifiers: [], options: [])
center.setNotificationCategories([pillTakenCategory])
content.categoryIdentifier = "pillTakenCategory"
let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger)
center.add(request)