等待Objective-C中的异步操作

时间:2013-02-04 23:19:35

标签: ios objective-c asynchronous grand-central-dispatch

我正在疯狂搜索并仍对此感到困惑。

我想将一个文件URL数组下载到磁盘,我想根据每个文件下载时加载的字节更新我的视图。我已经有了下载文件的东西,并通过块报告进度和完成情况。

如何为数组中的每个文件执行此操作?

我一次只能做一个。我可以通过这种方式轻松计算总进度:

float progress = (numCompletedFiles + (currentDownloadedBytes / currentTotalBytes)) / totalFiles)

我主要理解GCD和NSOperations,但是如何告诉操作或dispatch_async块在完成之前等待回调?似乎有可能通过覆盖NSOperation,但这似乎有点矫枉过正。还有另外一种方法吗?只有GCD可以吗?

3 个答案:

答案 0 :(得分:16)

我不确定我是否理解正确,但也许你需要派遣信号量来实现你的目标。在我的一个项目中,我使用调度信号量等待另一个玩家完成另一个转弯。这部分是我使用的代码。

for (int i = 0; i < _players.count; i++)
{

    // a semaphore is used to prevent execution until the asynchronous task is completed ...

    dispatch_semaphore_t sema = dispatch_semaphore_create(0);


    // player chooses a card - once card is chosen, animate choice by moving card to center of board ...

    [self.currentPlayer playCardWithPlayedCards:_currentTrick.cards trumpSuit:_trumpSuit completionHandler:^ (WSCard *card) {

        BOOL success = [self.currentTrick addCard:card];

        DLog(@"did add card to trick? %@", success ? @"YES" : @"NO");

        NSString *message = [NSString stringWithFormat:@"Card played by %@", _currentPlayer.name];
        [_messageView setMessage:message];

        [self turnCard:card];
        [self moveCardToCenter:card];


        // send a signal that indicates that this asynchronous task is completed ...

        dispatch_semaphore_signal(sema);

        DLog(@"<<< signal dispatched >>>");
    }];


    // execution is halted, until a signal is received from another thread ...

    DLog(@"<<< wait for signal >>>");

    dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER);
    dispatch_release(sema);


    DLog(@"<<< signal received >>>");

答案 1 :(得分:7)

调度组是GCD工具,旨在跟踪一组独立或单独异步的块/任务的完成。

使用dispatch_group_async()提交有问题的块,或者在触发异步任务之前使用dispatch_group_enter()组,并在任务完成时使用dispatch_group_leave()组。

然后,当组中的所有块/任务完成时,您可以通过dispatch_group_notify()异步通知,或者如果必须,您可以使用dispatch_group_wait()同步等待完成。

答案 2 :(得分:0)

我只是想注意,我确实通过继承NSOperation并使其成为&#34;并发&#34;操作。 (此上下文中的并发意味着在将其标记为完成之前应等待的异步操作)。

http://www.dribin.org/dave/blog/archives/2009/05/05/concurrent_operations/

基本上,您在子类中执行以下操作

  1. 覆盖start以开始您的操作
  2. 覆盖isConcurrent以返回YES
  3. 完成后,以符合键值的方式确保isExecuting和isFinished更改正确(基本上,willChangeValueForKey:didChangeValueForKey: isFinishedisExecuting }
  4. 在包含队列的类

    1. maxConcurrentOperationCount上的NSOperationQueue设置为1
    2. 在所有并发的操作之后添加一个操作,一旦完成就会触发