0

在我的应用程序中,我需要处理一组数据并仅在互联网连接可用时将其发送到服务器。我需要在单独的线程上执行此任务,因此应用程序的正常执行不会中断。

我创建了一个名为的类ProcessQueue,它遍历数组并将其发送到服务器。

我需要在 ApplicationDidBecomeActive 事件上执行此任务,延迟几秒钟,但在单独的线程上。

我尝试了以下操作,但选择器没有被调用。(我正在尝试在ProcessQueue课堂内设置断点)。

dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

    [self performSelector:@selector(processTheQueue) withObject:nil afterDelay:5];
    dispatch_async( dispatch_get_main_queue(), ^{

    });
});


- (void) processTheQueue
{

    QueueProcessor *process = [[QueueProcessor alloc] init];
    [process processQueue];

}

我也尝试在[process processQueue]' method instead ofdispatch_async` 中使用 performSelector 但不起作用。

4

1 回答 1

1

试试这个..

   double delayInSeconds = 2.0;
    dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
    dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
        // code to be executed on main thread.If you want to run in another thread, create other queue
        [self repeateThreadForSpecificInterval];
    });
于 2013-06-18T13:13:14.287 回答