ios - 如何检查 ios url 连接中是否发生超时?

标签 ios xcode timeout detect urlrequest

我已经使用 URLRequest 从我的 wifi 网络中的一台电脑上获取了一个 html 文件。 我的应用程序从我的文件服务器获取一个 html 文件,文件名是一个在应用程序中输入的数字。我还为请求设置了 20 秒的超时时间。我如何检测是否发生超时,因为我有两种情况, 1.文件不存在 2.连接速度慢

在urlrequest中,有一个BOOL表示error,没有说明。 如果可能的话,建议我一个方法。 我的代码仅用于 urlrequest

-(void)getHtmlContent{
[self.spinner startAnimating];
NSString *str = @"http://192.168.1.250/rec/";
//        NSString *str = @"file:///Volumes/xampp/htdocs/";
str = [str stringByAppendingString:numEntered.text];
str = [str stringByAppendingString:@".html"];
NSURL *url=[NSURL URLWithString:str];
//self.htmlContent = nil;

NSMutableURLRequest *request = [NSMutableURLRequest             requestWithURL:url];
    //NSURLRequest *request = [NSURLRequest requestWithURL:url];
    request.timeoutInterval = 20.0;
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration ephemeralSessionConfiguration];
    NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration];
    NSURLSessionDownloadTask *task = [session downloadTaskWithRequest:request completionHandler:^(NSURL *localfile, NSURLResponse *response, NSError *error) {
        if(!error){
            if([request.URL isEqual:url]){

                NSString *content = [NSString stringWithContentsOfURL:localfile encoding: NSUTF8StringEncoding error:&error];
                dispatch_async(dispatch_get_main_queue(), ^{
                    [numEntered setText:@"0"];
                    text = @"";
                    [self.spinner stopAnimating];

                    self.htmlContent = content;

                    NSString *myHTMLString = self.htmlContent;
                    if(myHTMLString != nil) {
                        if([myHTMLString isEqualToString:@"3"]){
                            UIAlertView *alrt = [[UIAlertView alloc] initWithTitle:@"LogIn Success" message:@"" delegate:self cancelButtonTitle:@"Continue" otherButtonTitles:nil];
                            self.view.userInteractionEnabled = YES;
                            [alrt show];


                        }
                        else{
                            UIAlertView *alrt = [[UIAlertView alloc] initWithTitle:@"LogIn Failed. Try again." message:@"User not authenticated" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
                            self.view.userInteractionEnabled = YES;
                            [alrt show];
                        }
                    }

                });

            }
        }
        else {
            dispatch_async(dispatch_get_main_queue(), ^{
                [self.spinner stopAnimating];
                [numEntered setText:@"0"];
                text = @"";
                UIAlertView *alrt = [[UIAlertView alloc]   initWithTitle:@"Requested file does not exist." message:@"Try again." delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
                self.view.userInteractionEnabled = YES;
                [alrt show];
            });
        }
    }];
    [task resume];



}

最佳答案

由于我无法发表评论,所以我正在写一个答案。

您需要检查错误对象以查看发生的错误类型。

所以在您的 else block 中,您需要检查 error.localizedDescription 以查看发生了什么,它通常会告诉您找不到文件或请求超时。你甚至可以使用你的警报来显示它,就像改变你的 else block 一样,如下所示

else {
        dispatch_async(dispatch_get_main_queue(), ^{
            [self.spinner stopAnimating];
            [numEntered setText:@"0"];
            text = @"";
            UIAlertView *alrt = [[UIAlertView alloc] initWithTitle : @"Error"                                                                  
                                                           message : error.localizedDescription 
                                                          delegate : self 
                                                 cancelButtonTitle : @"Ok" 
                                                 otherButtonTitles : nil];
            self.view.userInteractionEnabled = YES;
            [alrt show];
        });
    }

关于ios - 如何检查 ios url 连接中是否发生超时?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30568142/

相关文章:

ios - Xcode 10.1 模拟器突然响应非常非常慢

java - Jetty Websocket 空闲超时

Perl CGI 工具中的 Apache 超时

c# - 计划的 Windows 服务中的一致 FTP 超时

cocoa - 文本字段渲染

ios - 在 iOS 11 中播放音乐库时更改和隐藏音量 HUD(音量叠加)

ios - Firebase admob 未从 pod 或服务器获取最新的 google ad mob SDK

ios - 我的代码不适用于 TableView 中的部分

iphone - 使用 UIApplication sharedApplication 调用电话

ios - 如何在 Swift 中为 Collection View 添加边框?