I want to notify the user about something after some specific time. Are there any resources on this topic? Guides or sample code are particularly helpful. I have read a number of sites about it, but they are all about server side notifications like Facebook notify where if a message arrives or something like that. I just want it triggered locally from the iPhone app with no server involved.
Share
Yep! You’re looking for a
UILocalNotification. Once you’ve created one and configured it, you can either present it immediately or schedule it to appear at a certain point in time.In other words:
That’s all there is to it, really.