繁体   English   中英

如何等待完成dataTaskWithRequest?

[英]How to wait for finish dataTaskWithRequest?

我如何等待dataTaskWithRequest完成? 我需要在网络提取完全结束后执行一些任务。

如果您确实需要同步请求,则可以使用信号量

我在NSURLSession上实现了一个NSURLSession来提供这个功能。

.h文件中:

@import Foundation.NSURLSession;

@interface NSURLSession (Additions)

+ (NSData *)sendSynchronousRequest:(NSURLRequest *)request returningResponse:(NSURLResponse **)response error:(NSError **)error;

@end

.m文件中:

@implementation NSURLSession (Additions)

+ (NSData *)sendSynchronousRequest:(NSURLRequest *)request returningResponse:(NSURLResponse *__autoreleasing *)responsePointer error:(NSError *__autoreleasing *)errorPointer
{
    dispatch_semaphore_t semaphore;
    __block NSData *result = nil;

    semaphore = dispatch_semaphore_create(0);

    void (^completionHandler)(NSData * __nullable data, NSURLResponse * __nullable response, NSError * __nullable error);
    completionHandler = ^(NSData * __nullable data, NSURLResponse * __nullable response, NSError * __nullable error)
    {
        if ( errorPointer != NULL )
        {
            *errorPointer = error;
        }

        if ( responsePointer != NULL )
        {
            *responsePointer = response;
        }

        if ( error == nil )
        {
            result = data;
        }

        dispatch_semaphore_signal(semaphore);
    };

    [[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:completionHandler] resume];

    dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER);

    return result;
}

@end

我认为,这种方法在课堂上很明显

NSURLSessionDataTask *task = [defaultSession dataTaskWithRequest:request
                                               completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error)
{
    // code after completion of task
}];
[task resume];
- (void) loginRequest:(NSString*) username withPassword:(NSString *) password callback:(void (^)(NSError *error, BOOL success))callback
{
    NSURLSessionDataTask *dataTask = [self.session dataTaskWithRequest:request 
                                                     completionHandler:^(NSData *data, NSURLResponse *response, NSError *error){
        if (error) {
            // Handle error, optionally using
            callback(error, NO);
        }
        else {
            callback(nil, YES);
        }
    }];

    [dataTask resume];
}

像这样调用这个方法:

[self loginRequest:@"myUsername" password:@"password" callback:^(NSError *error, BOOL success) {
    if (success) {
        NSLog(@"My response back from the server after an unknown amount of time");
    }
    else {
        NSLog(@"%@", error);
    }
}];

让我们在dataTaskWithRequest的完成块中执行您的任务。 除此之外,您还可以显示活动指示器以阻止用户触摸屏幕上的任何内容。

例:

activityIndicator.startAnimating()

let task : NSURLSessionDataTask = session.dataTaskWithRequest(request, completionHandler: {(data, response, error) in
   activityIndicator.stopAnimating()
  // do your stuff here

});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM