网络请求 post 的接受请求头的代理方法

 

接收响应头

content-Length content-Type

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{

    NSHTTPURLResponse* res = (NSHTTPURLResponse*)response;

    float length = [[res.allHeaderFields objectForKey:@"Content-Length"] floatValue];

    NSLog(@"下载内容长度:%f", length);

}

posted @ 2015-10-10 17:18  上官元空  阅读(242)  评论(0编辑  收藏  举报