Implementing long running tasks in background IOS

前端 未结 3 665
北恋
北恋 2020-12-14 04:45

I have been working on an app in which user can record video using AVFoundation and send to the server, video has maximum size up to 15M, depending on the inter

3条回答
  •  南方客
    南方客 (楼主)
    2020-12-14 04:58

    NSOperationQueue is the recommended way to perform multi-threaded tasks to avoid blocking the main thread. Background thread is used for tasks that you want to perform while your application is inactive, like GPS indications or Audio streaming.

    If your application is running in foreground, you don't need background thread at all.

    For simple tasks, you can add a operation to a queue using a block:

    NSOperationQueue* operationQueue = [[NSOperationQueue alloc] init];
    [operationQueue addOperationWithBlock:^{
        // Perform long-running tasks without blocking main thread
    }];
    

    More info about NSOperationQueue and how to use it.

    The upload process will continue while in background, but your application will be eligible to be suspended, and thus the upload may cancel. To avoid it, you can add the following code to application delegate to tell the OS when the App is ready to be suspended:

    - (void)applicationWillResignActive:(UIApplication *)application {
        bgTask = [application beginBackgroundTaskWithExpirationHandler:^{
    
          // Wait until the pending operations finish
          [operationQueue waitUntilAllOperationsAreFinished];
    
          [application endBackgroundTask: bgTask];
          bgTask = UIBackgroundTaskInvalid;
        }]; 
    }
    

提交回复
热议问题