How can I wait for a NSURLConnection delegate to finish before executing the next statement?

前端 未结 3 894
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-15 19:31

This has been a hard one to search. I found a similar question, iOS 5 Wait for delegate to finish before populating a table?, but the accepted answer was \'Refresh the tabl

3条回答
  •  迷失自我
    2021-01-15 19:51

    Wrap your asynchronous NSURLConnection request in a helper method which has a completion block as a parameter:

    -(void) asyncDoSomething:(void(^)(id result)completionHandler ;

    This method should be implemented in the NSURLConnectionDelegate. For details see the example implementation and comments below.

    Elsewhere, in your action method:

    Set the completion handler. The block will dispatch further on the main thread, and then perform anything appropriate to update the table data, unless the result was an error, in which case you should display an alert.

    - (IBAction) recordButtonPressed 
    {
        [someController asyncConnectionRequst:^(id result){
            if (![result isKindOfClass:[NSError class]]) {
                dispatch_async(dispatch_get_main_queue(), ^{
                    // We are on the main thread!
                    someController.tableData = result;
                });
            }    
        }];
    }
    

    The Implementation of the method asyncConnectionRequst: could work as follows: take the block and hold it in an ivar. When it is appropriate call it with the correct parameter. However, having blocks as ivars or properties will increase the risk to inadvertently introduce circular references.

    But, there is a better way: a wrapper block will be immediately dispatched to a suspended serial dispatch queue - which is hold as an ivar. Since the queue is suspended, they will not execute any blocks. Only until after the queue will be resumed, the block executes. You resume the queue in your connectionDidFinish: and connectionDidFailWithError: (see below):

    In your NSURLConnectionDelegate:

    -(void) asyncConnectionRequst:(void(^)(id result)completionHandler 
    {
        // Setup and start the connection:
        self.connection = ...
        if (!self.connection) {
            NSError* error = [[NSError alloc] initWithDomain:@"Me" 
                                code:-1234 
                            userInfo:@{NSLocalizedDescriptionKey: @"Could not create NSURLConnection"}];
                completionHandler(error);
            });
            return;
        }
        dispatch_suspend(self.handlerQueue);  // a serial dispatch queue, now suspended
        dispatch_async(self.handlerQueue, ^{
            completionHandler(self.result);
        });
        [self.connection start];
    }
    

    Then in the NSURLConnectionDelegate, dispatch a the handler and resume the handler queue:

    - (void) connectionDidFinishLoading:(NSURLConnection*)connection {
        self.result = self.responseData;
        dispatch_resume(self.handlerQueue);
        dispatch_release(_handlerQueue), _handlerQueue = NULL;
    }
    

    Likewise when an error occurred:

    - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
    {
        self.result = error;
        dispatch_resume(self.handlerQueue);
        dispatch_release(_handlerQueue), _handlerQueue = NULL;
    }
    

    There are even better ways, which however involve a few more basic helper classes which deal with asynchronous architectures which at the end of the day make your async code look like it were synchronous:

    -(void) doFourTasksInAChainWith:(id)input
    {
        // This runs completely asynchronous!
    
        self.promise = [self asyncWith:input]
        .then(^(id result1){return [self auth:result1]);}, nil)
        .then(^(id result2){return [self fetch:result2];}, nil)
        .then(^(id result3){return [self parse:result3];}, nil)
        .then(^(id result){ self.tableView.data = result; return nil;}, ^id(NSError* error){ ... })
    
        // later eventually, self.promise.get should contain the final result        
    }
    

提交回复
热议问题