In ios, it supports long running background task for certain types of apps with background modes such as App registers for location updates,App provides Voice over IP services,App plays audio,App processes Newsstand Kit downloads,App communicates using CoreBluetooth,App shares data using CoreBluetooth.
My application in ios will updload file to remote server periodically if network connection exists.It will do this process if the file is available in the particular directory.
I want to know that in which mode above my app does come under?
Asked
Active
Viewed 681 times
-1

gReEn HoRn
- 274
- 1
- 4
- 19
-
for me the background modes are self described. so your app will not be allowed to run in background. – thorb65 Dec 07 '13 at 09:47
-
@visualication Thanks for answering.It supports long running background task for newsstand Kit downloads.In my case my app uploads file. – gReEn HoRn Dec 07 '13 at 09:54
-
are you downloading from newsstand? no. so your app doesn't fit... – thorb65 Dec 07 '13 at 09:56
1 Answers
1
the background modes are very restrictive and your app doesnt fit in any category. if you want to use background downloading, try the following tutorial:

thorb65
- 2,696
- 2
- 27
- 37
-
Thanks for answering.According to the link you refer,This functionality supports only in ios7.But i want my app to be supported from ios4.I want my app to download file once it goes to background.Will i be restricted to the time limit of 10min? Or can i increase this time in order to finish my downloadeding job? – gReEn HoRn Dec 09 '13 at 05:52