Timer Interval and Calendar Trigger of Notifications Possible?
Timer Interval and Calendar Trigger of Notifications Possible?
I would like to have the user choose the date and time that their notifications start (October 15, 2018 at 9:15 AM) AND choose how often they want the notification to show up (every 5, 7, 15, etc minutes). It appears after looking at Swift 4 documentation, this functionality is split up between UNCalendarNotificationTrigger and UNTimeIntervalNotificationTrigger. Is there any way to set up this functionality?
@Ashik I don't see where this can be done with UNUserNotificationCenter in the docs. What method should I be using?
– J Dub
Aug 30 at 22:56
Check this out. It's a good article: hackingwithswift.com/read/21/2/…
– Ashik
Aug 30 at 23:02
Just schedule a single notification and once you receive that notification just schedule the next one
– Leo Dabus
Aug 30 at 23:28
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
You can try using UNUserNotificationCenter. You can schedule the notifications every 5,7,15 etc minutes from the start time the user picked.
– Ashik
Aug 30 at 22:50