zoukankan      html  css  js  c++  java
  • IOS 后台之长时间任务 beginBackgroundTaskWithExpirationHandler 申请后台十分钟 600秒

    10分钟

    beginBackgroundTaskWithExpirationHandler,beginBackgroundTaskWithName

    endBackgroundTask

    定义变量

    UIBackgroundTaskIdentifier bgTask;

    - (void)applicationDidEnterBackground:(UIApplication *)application
    
    {
    
        bgTask = [application beginBackgroundTaskWithName:@"MyTask" expirationHandler:^{
    
            // Clean up any unfinished task business by marking where you
    
            // stopped or ending the task outright.
    
            [application endBackgroundTask:bgTask];
    
            bgTask = UIBackgroundTaskInvalid;
    
        }];
    
     
    
        // Start the long-running task and return immediately.
    
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    
     
    
            // Do the work associated with the task, preferably in chunks.
    
     
    
            [application endBackgroundTask:bgTask];
    
            bgTask = UIBackgroundTaskInvalid;
    
        });
    
    }

    Declaration

    Swift

    func beginBackgroundTaskWithExpirationHandler(_ handler: (() -> Void)?) -> UIBackgroundTaskIdentifier

    Objective-C

    - (UIBackgroundTaskIdentifier)beginBackgroundTaskWithExpirationHandler:(void (^)(void))handler

        Listing 4-2 Starting a background task at quit time    
        - (void)applicationDidEnterBackground:(UIApplication *)application    
        {    
        UIApplication* app = [UIApplication sharedApplication];    
        bgTask = [app beginBackgroundTaskWithExpirationHandler:^{    
        [app endBackgroundTask:bgTask];    
        bgTask = UIBackgroundTaskInvalid;    
        }];    
        // Start the long-running task and return immediately.    
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,    
        0), ^{    
        // Do the work associated with the task.    
        [app endBackgroundTask:bgTask];    
        bgTask = UIBackgroundTaskInvalid;    
        });    
        }   

     ^{} block 语法。

    dispatch_queue_create

    dispatch_release

    dispatch_async_f

     

    Queue: dispatch_queue_t;
    
    Queue := dispatch_queue_create('Video Capture Queue', 0);
  • 相关阅读:
    生产者消费者问题 一个生产者 两个消费者 4个缓冲区 生产10个产品
    三个线程交替数数 数到100
    c++ 字符串去重
    Java中一个方法只被一个线程调用一次
    GEF开发eclipse插件,多页编辑器实现delete功能
    python-arp 被动信息收集
    ssrf
    TCP
    xxe
    越权
  • 原文地址:https://www.cnblogs.com/cb168/p/5137656.html
Copyright © 2011-2022 走看看