Case: If your set a time 8:00 am and Days as Monday and Wednesday, then we notify the user at 8:00 am Monday and Wednesday. What are the best ways to handle this situation.
So far i searched, UILocalNotofication and NSTimer. Other that these things to handle?
This Apple example on how to do it with
UILocalNotification
Apple doesn't let you run NSTimers on the background (There were some security issues), This Apple Guide that explains how to run tasks in the background and have some code examples like the one above.