我的应用程序的执行通常会在didReceiveChallenge停止2-3秒(甚至5秒)。大约十分之一的时间需要永远。 整个过程都有效,但我能做些什么来加快速度呢?
这是我的代码:
- (void)URLSession:(NSURLSession *)session
didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge
completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential * __nullable credential))completionHandler{
NSLog(@"*** KBRequest.NSURLSessionDelegate - didReceiveChallenge IOS10");
if([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]){
if([challenge.protectionSpace.host isEqualToString:@"engine.my.server"]){
NSURLCredential *credential = [NSURLCredential credentialForTrust: challenge.protectionSpace.serverTrust];
completionHandler(NSURLSessionAuthChallengeUseCredential,credential);
}
else{
completionHandler(NSURLSessionAuthChallengeCancelAuthenticationChallenge, nil);
}
}
}
答案 0 :(得分:0)
每次调用此方法时,您必须调用完成处理程序。您只需将其称为单个保护空间。
当操作系统在您的委托上调用此方法时,NSURLSession
堆栈会尽职尽责地等待您调用完成处理程序块。如果您未能调用完成处理程序,则您的请求将处于不稳定状态,直到请求超时。
要解决此问题,请在方法的底部添加:
} else {
completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
}