gpt4 book ai didi

ios - [NSURLConnection sendAsynchronousRequest : . ..] 总是发送完成 block 吗?

转载 作者:可可西里 更新时间:2023-11-01 04:09:16 25 4
gpt4 key购买 nike

很可能是一个相当微不足道的问题,但是是否总是使用 [NSURLConnection sendAsynchronousRequest: ...] 调用完成 block ?或者我是否必须实现超时计时器?

考虑以下我在调用之前添加 MBProgressView 并仅在完成 block 中删除它的地方:

[self showHUDWithTitle:@"Configuring"];
[NSURLConnection sendAsynchronousRequest:request
queue:[[NSOperationQueue alloc] init]
completionHandler:^(NSURLResponse *response,
NSData *data,
NSError *error) {

if ([data length] >0 && error == nil) {
[self hideHUDWithFlag:YES
andTitle:@"Finished"
andSubtitle:@"(Box was configured)"];

} else if ([data length] == 0 && error == nil) {
[self hideHUDWithFlag:NO
andTitle:@"Failed"
andSubtitle:@"(Check box connection)"];
NSLog(@"Nothing was downloaded.");

} else if (error != nil) {
[self hideHUDWithFlag:NO
andTitle:@"Error"
andSubtitle:@"(Check box connection)"];
NSLog(@"Error = %@", error);
}
}];

最佳答案

是的,总是调用完成处理程序。如果请求因超时而失败,将设置 error 并且 data = nil

NSURLRequest 的默认超时为 60 秒,但您可以在开始连接之前为 request.timeoutInverval 分配不同的值。所以不需要额外的计时器。

添加:在超时的情况下:

  • [错误域]NSURLErrorDomain,并且
  • [错误代码]NSURLErrorTimedOut,

如果你只是想呈现一条错误信息,你可以使用[error localizedDescription],即“请求超时”。在这种情况下。 (这可能取决于语言环境。)

关于ios - [NSURLConnection sendAsynchronousRequest : . ..] 总是发送完成 block 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15518316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com