ios開發教程之申請更多後台時間

來源:互聯網
上載者:User

  在ios應用及遊戲開發過程中,我們很多時候需要在使用者切換到後台工作的時候做一些操作,例如清除記憶體或者儲存使用者資料之類的。這些操作一般都在

AppDelagate的applicationDidEnterBackground:(UIApplication *)application中進行(當然我們也可以通過接收應用程式發送的通知UIApplicationDidEnterBackgroundNotification來觸發處理)。但是這些工作系統只給我們分配了5秒的時間去處理,否則系統將會將應用強制退出。所以在很多時候我們需要申請更多的時間來處理相關後台操作。

  現在我們就來看一下如何申請更多的後台時間.代碼如下

- (void)applicationDidEnterBackground:(UIApplication *)application

{

    UIApplication *app=[UIApplicationsharedApplication];

    //一個背景工作標識符 

    __blockUIBackgroundTaskIdentifier taskId;

//    申請後台運行更多時間  

    taskId=[app beginBackgroundTaskWithExpirationHandler:^(void){

//      超出系統延長的時間執行

        NSLog(@"Background task ran out of time and was termined.");

        [app endBackgroundTask:taskId];

    }];

//    申請失敗  

    if(taskId==UIBackgroundTaskInvalid){

        NSLog(@"Fail to start background task!");

        return;

    }

    NSLog(@"Starting background task with %f seconds remaining",app.backgroundTimeRemaining);

    while (true) {

    [NSThreadsleepForTimeInterval:1];

    NSLog(@"小丁在後台");

    }

}

我想代碼已經注釋的很清楚了 ,運行代碼我們會發現,系統給我們延長的時間接近於600s。當然這對我們清理記憶體和儲存使用者資訊來說已經足夠了。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.