Sudipto Roy
Sudipto Roy

Reputation: 6795

Limitation of local UserNotifications

I studied on iOS local notification and my some of assumptions are:

  1. We cannot schedule a notification with single identifier for multiple distinct dates or dates:[Date]
  2. We cannot get the notification instance by any delegates (or anyway ) while app is not running and user didn’t tapped the notification
  3. We cannot repeat a notification to a given expire date

Am I correct ?

Apple Documentation : Link 1 Link 2

Upvotes: 1

Views: 78

Answers (1)

Daniel Muñoz
Daniel Muñoz

Reputation: 545

It is correct, local notifications are very limited, and are mostly used as immediate or next executions before an event occurred, to do what you say I recommend using push notifications, Firebase is one of the most popular currently and easy to manage, you could try with this Firebase Cloud Messaging Documentation

Upvotes: 1

Related Questions