Wake up an app at a specific time in iOS

ios, iphone, objective-c

Solution

As far as i know there is no such behavour in iOS.

It is possible to catch a push notification as you mentioned. And you can run your code in `application:didReceiveRemoteNotification` or `application:didReceiveLocalNotification` methods in application delegate class.

more info on notifications:

Problem

I need to build an application that will have an alarm clock function - meaning that the user will be able to set a time for the application to wake up and perform some actions. I saw that i can post and catch a local push notification but i need to run some code when the application wakes up. Does iOS offer this behavior? Thanks!

Original source

Related problems