i’m working with UILocalNotification, and i have read the apple documentation about it at this link:
but my question is how many notification i can schedule?…because here there write this:
the system keeps the soonest firing 64 notifications (with automatically rescheduled notifications counting as a single notification) and discards the rest.
so what this lines means?…i can schedule more than 64 notification or not? i don’t want fire 64 at the same time, i only want schedule more than 64 notification…and then fire it when it’s the firetime…
You can schedule n number of notifications, if n is more than 64, only the soonest notifications will be scheduled, the rest will be lost.
That 64 notifications will be fired depending on the
fireDateproperty. It doesn’t matter wheter the notificationsfireDateis the same.Tha confusing part may be:
If you use the
repeatingIntervalproperty you can schedule “more” than 64 notifications using aNSCalendarUnit.Handling more than 64 scheduled notifications can be managed by creating your own queue of notifications. I explain how to do it here.