7

iOS

我们可以在应用程序最小化后调用该方法吗?

例如, 5 seconds after was called applicationDidEnterBackground:

我使用此代码,但test方法不调用

- (void)test
{
    printf("Test called!");
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    [self performSelector:@selector(test) withObject:nil afterDelay:5.0];
}
4

1 回答 1

7

您可以在后台运行后使用后台任务 API 调用方法(只要您的任务不会花费太长时间 - 通常约 10 分钟是允许的最大时间)。

iOS 不会在应用程序后台运行时触发计时器,因此我发现在应用程序后台运行之前调度后台线程,然后将该线程置于睡眠状态,与计时器具有相同的效果。

将以下代码放入您的应用委托的- (void)applicationWillResignActive:(UIApplication *)application方法中:

// Dispatch to a background queue
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{

    // Tell the system that you want to start a background task
    UIBackgroundTaskIdentifier taskID = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
        // Cleanup before system kills the app
    }];

    // Sleep the block for 5 seconds
    [NSThread sleepForTimeInterval:5.0];

    // Call the method if the app is backgrounded (and not just inactive)
    if (application.applicationState == UIApplicationStateBackground)
        [self performSelector:@selector(test)];  // Or, you could just call [self test]; here

    // Tell the system that the task has ended.
    if (taskID != UIBackgroundTaskInvalid) {
        [[UIApplication sharedApplication] endBackgroundTask:taskID];
    }

});
于 2013-07-11T10:48:01.047 回答