I want to create an iOS-app which will send LocalNotifications at a specific time (Alarm-App).
My problem is that I want to set the Notifications at 00:01 o'clock for the current date. I don't know how to achieve this because background-work at a specific time is not allowed (Stackoverflow-Post).
EDIT:
It should be possible that it rings:
- every day
- at specific day of week (for example: every monday and friday)
- first day rings, second day rings, third day rings not, fourth day rings not (this is the biggest problem)
- sometimes I should skip a notification (because the user already got it)(big problem too)
In Android I solved this problem by setting the alarms for the current day at 00:01 o'clock
Is this also possible in iOS?