Как сделать так, чтобы уведомления показывались каждый день в указанное время, кроме сегодняшнего дня?
Есть код, который выводит уведомления каждый день в 10:30:
//Center
let center = UNUserNotificationCenter.current()
center.removeAllPendingNotificationRequests()
//Content
let content = UNMutableNotificationContent()
content.title = "Заголовок"
content.body = "Текст"
content.categoryIdentifier = "alarm"
content.sound = UNNotificationSound(named: UNNotificationSoundName(rawValue: "inflicted.mp3"))
content.badge = 1
//Trigger
var dateComponents = DateComponents()
dateComponents.hour = 10
dateComponents.minute = 30
let triggerDate = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: true)
//Set
let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: triggerDate)
center.add(request)