我正在使用Apple Watch app,我需要提醒用户通知唤醒用户。
我可以使用make UserNotification
设置repeat : true
,并且每天都会提醒用户。
但我需要的是在单日应用程序将根据用户选择通知如下。
如果用户选择3分钟理想时间,每3分钟用户就会收到振动通知。
同样,5分钟,10分钟和15分钟。我正在使用UserNotification
下面的代码。
func scheduleNotification(at date: Date) {
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: true)
let content = UNMutableNotificationContent()
content.title = "Test Reminder"
content.body = "Show More detail in Body!"
content.sound = UNNotificationSound.default()
content.categoryIdentifier = "myCategory"
if let path = Bundle.main.path(forResource: "logo", ofType: "png") {
let url = URL(fileURLWithPath: path)
do {
let attachment = try UNNotificationAttachment(identifier: "logo", url: url, options: nil)
content.attachments = [attachment]
} catch {
print("The attachment was not loaded.")
}
}
let request = UNNotificationRequest(identifier: "textNotification", content: content, trigger: trigger)
UNUserNotificationCenter.current().delegate = self
UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
UNUserNotificationCenter.current().add(request) {(error) in
if let error = error {
print("Uh oh! We had an error: \(error)")
}
}
}
通过 repeats: true
let trigger = UNCalendarNotificationTrigger(dateMatching: newComponents, repeats: true)
第二天同一时间重复。
有没有办法或方法根据用户选择在特定间隔后设置重复?
任何帮助将不胜感激!
提前致谢。
答案 0 :(得分:0)
尝试使用UNTimeIntervalNotificationTrigger
代替UNCalendarNotificationTrigger
。
例如:
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 2*60, repeats: true)
这将创建一个每2分钟触发一次的触发器。 timeInterval
是触发每个通知之间的秒数。