Reputation: 2290
I am aware that with NSURLSession, data download continues even after we put the application in the background. However, I am not sure that if a app is killed, the download would continue or not.
Is it possible at all? In case YES, could you tell me step-by-step approach?
Thanks in advance.
Anupam
Upvotes: 2
Views: 378
Reputation: 7360
Once your app is killed, nothing happens. No code is executed. The only time you can start a download progress is with background fetch and that only happens at times determined by the OS.
Upvotes: 1