I have a swift 2 app in which you can create entries in Core Data. Each entry will register a local notification.
The problem is the limit of 64 local notifications. Is there an way to solve this "problem" with the limitation?
I have a swift 2 app in which you can create entries in Core Data. Each entry will register a local notification.
The problem is the limit of 64 local notifications. Is there an way to solve this "problem" with the limitation?
Kind of (thanks @dfri). However, repeated notifications only count as one notification, but it appears that you have 64 completely independent notifications.
From the Local and Remote Notification Programming Guide:
Each app on a device is limited to 64 scheduled local notifications. The system discards scheduled notifications in excess of this limit, keeping only the 64 notifications that will fire the soonest. Recurring notifications are treated as a single notification.
The only semi-viable alternative is (see this repo):