美文网首页程序员
iOS开发-NSURLSession基本使用

iOS开发-NSURLSession基本使用

作者: 037e3257fa3b | 来源:发表于2017-02-23 18:29 被阅读0次

    NSURLConnection在iOS 9之后已经弃用,苹果使用NSURLSession相关类来作为替代。接下来的几篇就详细介绍一下NSURLSession的常见用法。

    与CAAnimation、NSOperation一样,NSURLSessionTask也是抽象类,不具备操作的能力,使用过程中只能使用其子类:


    NSURLSessionTask.png

    GET请求

    NSURLSession.png

    实际开发中,我们一般使用其中带有回调的那两个方法。
    直接传入请求对象来发送请求:

     //1.确定URL
        NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=520it&pwd=520it&type=JSON"];
        
        //2.创建请求对象
        NSURLRequest *request =[NSURLRequest requestWithURL:url];
        
        //3.创建会话对象
        NSURLSession *session = [NSURLSession sharedSession];
        
        //4.创建Task
        /*
         第一个参数:请求对象
         第二个参数:completionHandler 当请求完成之后调用
            data:响应体信息
            response:响应头信息
            error:错误信息当请求失败的时候 error有值
         */
        NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
            
            //6.解析数据
            NSLog(@"%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]);
        }];
        
        //5.执行Task
        [dataTask resume];
    

    直接传入URL地址来发起GET请求:

    //1.确定URL
        NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login?username=520it&pwd=520it&type=JSON"];
        
        //2.创建会话对象
        NSURLSession *session = [NSURLSession sharedSession];
        
        //3.创建Task
        /*
         第一个参数:请求路径
         第二个参数:completionHandler 当请求完成之后调用
         data:响应体信息
         response:响应头信息
         error:错误信息当请求失败的时候 error有值
         注意:dataTaskWithURL 内部会自动的将请求路径作为参数创建一个请求对象(GET)
         */
        NSURLSessionDataTask *dataTask = [session dataTaskWithURL:url completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
            
            //5.解析数据
            NSLog(@"%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]);
        }];
        
        //4.执行Task
        [dataTask resume];
    

    POST请求

    //1.确定URL
        NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/login"];
        
        //2.创建请求对象
        NSMutableURLRequest *request =[NSMutableURLRequest requestWithURL:url];
        
        //2.1 设置请求方法为post
        request.HTTPMethod = @"POST";
        
        //2.2 设置请求体
        request.HTTPBody = [@"username=520it&pwd=520it&type=JSON" dataUsingEncoding:NSUTF8StringEncoding];
        
        //3.创建会话对象
        NSURLSession *session = [NSURLSession sharedSession];
        
        //4.创建Task
        /*
         第一个参数:请求对象
         第二个参数:completionHandler 当请求完成之后调用 !!! 在子线程中调用
         data:响应体信息
         response:响应头信息
         error:错误信息当请求失败的时候 error有值
         */
        NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
            
            NSLog(@"%@",[NSThread currentThread]);
            //6.解析数据
            NSLog(@"%@",[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding]);
        }];
        
        //5.执行Task
        [dataTask resume];
    

    相关文章

      网友评论

        本文标题:iOS开发-NSURLSession基本使用

        本文链接:https://www.haomeiwen.com/subject/vzibwttx.html