我不知道如何在独立的WatchOS APP中安排本地通知
在我的扩展代表中,我尝试进行设置
let center = UNUserNotificationCenter.current()
func applicationDidFinishLaunching() {
center.delegate = self
let options: UNAuthorizationOptions = [.alert, .badge, .sound]
center.requestAuthorization(options: options) { (granted, error) in
if granted {
WKExtension.shared().registerForRemoteNotifications()
}
}
}
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
completionHandler()
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .sound,.badge])
}
这是时间表代码:
let content = UNMutableNotificationContent()
content.title = "Meniny Oslavuje"
content.body = nameEntry.name
var dateComponents = DateComponents()
dateComponents.month = dateNameEntry.month
dateComponents.day = dateNameEntry.day
dateComponents.hour = self.reminderTimeHour
dateComponents.minute = self.reminderTimeMinute
let trigger = UNCalendarNotificationTrigger(dateMatching:dateComponents , repeats: true)
let request = UNNotificationRequest(identifier: uuid.uuidString, content: content, trigger: trigger)
center.removeAllPendingNotificationRequests()
center.add(request) { (err) in
print(err)
}
所以,问题在于我可以发送的通知数量。
我正在构建基于事件的应用程序,我知道每天发生什么事件。
因此,当我尝试安排每天的活动(365天= 365个通知)时,我已达到64个通知限制。
而且我们现在在四月,我的通知无法被触发,因为它已经落后了64天...