My app requires that I start countdown of days from first launch. If someone launch my app for the first time I want to count day 1 after 12 midnight (using the device clock of course) and then day2 ... and perform an action after the 21st day. It shouldn't matter if the person close the app or switch off phone. When the app come back up, it should automatically detect how many days have passed.
Does anyone have an idea how to realise that ? . I am thinking of NStimer but kind of confuse.
I think you want to use
UILocalNotification
. That would allow you to alert the user regardless if your app is active or not.Please consult the documentation here, do a trial implementation and ask a new stack overflow question if you get stuck and cannot find an answer.