UNCalendarNotificationTrigger
으로 매일 특정 시간에 반복 할 수 있습니다. UNTimeIntervalNotificationTrigger
와시간당 X 시간마다 푸시 알림 반복
let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: true)
나는 타이머를 만들 때 일부 간격으로 반복 할 수 있습니다.
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: Double(frequency*60), repeats: true)
어떻게하지만, 좀 유연 간격으로, 푸시 알림 시간에 반복받을 수 있나요? 예를 들어, 오전 12 시부 터 2 시간마다, 3 시간마다 또는 12 시간마다 등.