0

如何在iphone中设置应用程序在后台运行?

4

2 回答 2

1

在您的应用程序被引导到后台后,您可以在有限的时间内执行任务,但仅限于提供的持续时间。运行时间超过此时间将导致您的应用程序终止。请参阅iOS 应用程序编程指南的“在后台完成长时间运行的任务”部分以了解如何进行此操作。

于 2012-07-26T05:03:03.427 回答
1

参考以下代码。

- (void)applicationDidEnterBackground:(UIApplication *)application
{
     UIApplication* app = [UIApplication sharedApplication];

    //Create a task object
    __block UIBackgroundTaskIdentifier backgroundTask;

    backgroundTask = [app beginBackgroundTaskWithExpirationHandler:^{
        dispatch_async(dispatch_get_main_queue(), ^{
            if (backgroundTask != UIBackgroundTaskInvalid) {
                [app endBackgroundTask:backgroundTask];
                backgroundTask = UIBackgroundTaskInvalid;
            }
        });
    }];

    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        dispatch_async(dispatch_get_main_queue(), ^{
            if (backgroundTask != UIBackgroundTaskInvalid) {

                // do stuff              

                [app endBackgroundTask:backgroundTask];
                backgroundTask = UIBackgroundTaskInvalid;
            }
        });
    });
}
于 2012-07-26T02:40:06.790 回答