Reputation: 337
I need to make this call to web service over a period of time interval like after 10 min the application went to the background. Can I make call to web service from app when App is running on background? Is there any other way to get some latest data when app is running background?
Upvotes: 1
Views: 4385
Reputation: 4767
Not possible in iOS6.x or lesser unless your application is has specific requirement to run in background like locations, Voip, music etc...
However this is possible with iOS7, please consider having a look at this tutorial on Background Fetching
Upvotes: 3
Reputation: 9913
You can not do this in background mode. There are few services that can be used in background.
Upvotes: 1