Possible Duplicate:
Fire local notification every day on different times
I am using a plugin to create local notifications. On android I simply create all local notifications and I am done. On iOS there is a limit of 64 notifications.
My question: Who can I handle this limit?
Some thoughts:
I could create some kind of buffer but I am not sure how to do that in xcode. Also I would need to periodically check if I can send you notifications from the buffer to iOS. But how could I do that if the app is not running? Could I use the notification AppDelegate handleOpenURL? How would I keep the buffer even if the app is closed?