My employer want an reminder app but don't want to add any thing in built-in reminder app, because using eventkit framework
reminders will be added in reminder app of iOS.
On other hand UILocalNotification
is limited to 64 per app and also limited set of repetition.
The requirement is after selecting a dates from calendar custom repetition can be set in these manner
Calculate how much time left in ending of a day and set repetition after every hour.
User can define custom number how many times like 2, 3 or 50. The notification will trigger
2 times in a day
or3 times in a day
or50 times in a day
according to how much time left in ending of a day.User can manually choose multiple times in a day.
I have to deliver this in two days, what are available possibilities with limitations of both approaches?