NSURLConnection(现在已经不用,仅作为了解)

NSURLConnection(现在已经不用,仅作为了解)

  • NSURL:请求地址

  • NSURLRequest:一个NSURLRequest对象就代表一个请求,包含以下内容:

    • 一个NSURL对象
    • 请求方法、请求头、请求体
    • 请求超时等等
  • NSMutableRequest:NSURLRequest的子类

  • NSURLConnection:

    • 负责发送请求,简历客服端和服务器的链接
    • 发送数据给服务器,并收集来自服务器的响应数据
  • 使用NSURLConnnection发送请求的步骤:

    • 创建一个URL对象,设置请求路径
    • 传入NSURL创建一个NSURLRequest对象,设置请求头和请求体
    • 使用NSURLConnection发送请求
  • 默认发送的都是GET

发送同步请求
// 设置url
NSURL *url = [NSURL URLWithString:@"http://www.eyee.com"];
// 创建请求对象
NSURLRequest *request  = [NSURLRequest requestWithURL:url];

// 发送请求
// sendSynchronousRequest阻塞式方法,需要等待服务器返回数据
NSHTTPURLResponse *response = nil;
NSError *error = nil;
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

// 解析服务器返回的数据(解析成字符串)
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
// 获取所有的返回头
response.allHeaderFields;
发送异步请求-block
// 设置url
NSURL *url = [NSURL URLWithString:@"http://www.eyee.com"];
// 创建请求对象
NSURLRequest *request  = [NSURLRequest requestWithURL:url];

/**
 发送请求
 @param request 请求对象
 @param queue 处理block的队列
 */
[NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
    // 请求完毕会来到这个block
    // response:返回头
    // data:返回的数据
    // connectionError:错误信息
}];
发送异步请求-代理
  • 需要遵守协议NSURLConnectionDataDelegate
// 设置url
NSURL *url = [NSURL URLWithString:@"http://www.eyee.com"];
// 创建请求对象
NSURLRequest *request  = [NSURLRequest requestWithURL:url];

// 创建连接对象
// 创建完毕后,自动发送异步请求
[[NSURLConnection alloc] initWithRequest:request delegate:self];

// 创建完毕后,自动发送异步请求
[NSURLConnection connectionWithRequest:request delegate:self];

// startImmediately == YES 自动发送异步请求
// startImmediately == NO  需要手动发送
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
// 发送请求
[conn start];

// 取消请求
[conn cancel];


// 下面是代理方法
/**
 接收到服务端响应
 */
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{

}
/**
 接收到服务器的数据
 如果数据量大,这个方法会被调用多次
 */
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    
}
/**
 服务器数据接收完毕
 */
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{

}
/**
 请求失败
 */
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{

}
POST请求
// 设置url
NSURL *url = [NSURL URLWithString:@"http://www.eyee.com"];
// 创建请求对象
NSMutableURLRequest *request  = [NSMutableURLRequest requestWithURL:url];

// 更改请求方法
request.HTTPMethod = @"POST";

// 设置请求提
request.HTTPBody = [@"username=123&pwd=123" dataUsingEncoding:NSUTF8StringEncoding];
// 设置超时
request.timeoutInterval = 5;

[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
    if(connectionError){
        // 有错误
    }else{
        // 没有错误
    }
}];
请求地址中有中文
  • stringByAddingPercentEscapesUsingEncoding
// 将中文URL进行转码
NSString *urlStr = @"http://www.eyee.com/login2?username=大牛&pwd=123"
 urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

你可能感兴趣的:(NSURLConnection(现在已经不用,仅作为了解))