iOS 10では、特定の日付/時刻から開始するローカル通知を分単位で繰り返すように設定する方法を教えてください。iOS 10 - 「x」分ごとに通知を繰り返す
たとえば、9月8日の午前11時から15分ごとにローカル通知をトリガーしますか?以下、dateTimeReminder.dateが09/08 11 AMであると仮定します。上記のコードで
let dateStart = self.dateTimeNotif.date
let notifTrigger = UNCalendarNotificationTrigger.init(dateMatching: NSCalendar.current.dateComponents([.day, .month, .year, .hour, .minute], from: dateStart), repeats: true)
let notificationRequest = UNNotificationRequest(identifier: "MYNOTIF", content: notifContent, trigger: notifTrigger)
UNUserNotificationCenter.current().add(notificationRequest, withCompletionHandler: nil)
、私は上の各日の特定の時間に、毎時間の特定の瞬間にスケジュールとする可能性があります。しかし、それをどのように「すべて」x「分」に変換するのですか?どんな助けもありがとうございます。
同様の質問 - How do I set an NSCalendarUnitMinute repeatInterval on iOS 10 UserNotifications?
はちょっと同じタイプの質問:http://stackoverflow.com/questions/ 41845576/ios-10-how-to-show-incoming-voip-call-notification-background-in-background @DS。 :助けてください –