Built-in iOS Reminders app allows us to create to-do lists with their own reminders (notifications). And all of the lists, and reminders are can easily sync across the iCloud devices.
Once synced the iCloud devices can easily send (location and calendar) notifications, while offline. Is it possible to create an app like the iOS Reminders (sync notifications)? I’m sorry, I haven’t any example (code) to share with you.
It sounds like your question is if you can sync notifications with iCloud. The answer is yes.
Here are couple considerations:
Reminder
records over CloudKit. The "notifications" are probably attributes of a Reminder
record with dates, times, and places saved along with them so they know when and where to show the notifications.Reminder
record to trigger them with UNUserNotificationCenter
. How to do this is pretty well covered across multiple versions of Swift in this post.I hope that helps get you started. Good luck!