I am working on the alert project which daily alerts the varying message and daily increments the badge. What I want to do is something like below.
Day1 : alert "January 1st", Badge = 1
Day2 : alert "January 2nd", Badge = 2
Day3 : alert "January 3rd", Badge = 3
Day4 : alert "January 4th", Badge = 4
::::
Day365 : alert "December 31st", Badge = 365
localnotification.repeatInterval = NSDayCalendarUnit
can repeat every day, but it will only repeats registered static notification. i.e always same alert message of "January 1st" and badge will stay "1" every time notification pops up.
I can register each separate local notifications but it is limited to register only 64 notifications, and it will not keep alerting after 64 times of alerts if the user does not launch the application at all.
Does any one know how to setup permanent snooze notification with arbitrary alert message and incremental badge without having launch the application? - If anyone knows workaround to do the same/similar thing will be great too!
Thank you so much for your help!