When an iOS application goes to the background, are lengthy tasks paused?
问题 Yes, I know if I wish my app to be responsive to users' multitasking actions, such as switch to another app, I should deal with - (void)applicationWillResignActive:(UIApplication *)application - (void)applicationDidBecomeActive:(UIApplication *)application What if my app is doing a quite-long time consuming operation (like downloading a big file) and the user causes my app to enter the background? Will that operation automatically be suspended and resumed when the user comes back to my app?