Reputation: 3879
I need to implement an RSS reader on iOS which updates its feed every # minutes, even if the app is in the background. I don't mind using NSXMLParser to do the parsing of the data, I just need a good way to do the following in the background at scheduled intervals:
I know how to do all of these things when the app is running, I just need to know how to make sure they get done even if the app is in the background.
Upvotes: 0
Views: 470
Reputation: 33101
Apple has strict rules about which apps are allowed to execute in the background. Your app, unfortunately, does not fit any of these categories.
From the Apple Docs: [Source]
Upvotes: 4