有没有办法弄清楚你的nsurlconnection现在是否真的是gzip而不是典型的,因为我想比较时间上的差异。谢谢,
答案 0 :(得分:2)
在NSURLConnectionDataDelegate
方法-connection:didReveiveResponse:
中,您可以查看Content-Encoding
的标题字段,如:
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
NSLog(@"%@", (NSHTTPURLResponse *)response allHeaderFields]);
}