How can an iOS app run a function in the background in a recurring manner (i.e. once an hour)?

Jason picture Jason · Apr 21, 2011 · Viewed 7.1k times · Source

On devices which support multitasking, I'd like my iOS app to run a function in the 'background' when the app is not running (i.e. it's suspended). I know that iOS supports running tasks in the background, but I'm not sure how to make the function recurring (and only when the app is not in the background). What's the best approach?

I'm not interested in running a long-term function in the background but a short-term function to simply update the application badge #. However this number is dynamically based on the app's data, and needs to run a query against core data.

To further clarify, yes, my core data will not be changing, but the badge represents a number of items due. As time progresses, more items will be due, so I want to update the badge to show the proper items due as time progresses. So if 5 items are due now, but half an hour later 3 more items are due, then by the time the next hour comes around, 8 items will be due even though the core data has not changed at all in and of itself.

Answer

rckoenes picture rckoenes · Apr 21, 2011

It can't, the only task allowed to run in background are: audio, voip and location.