我使用下面的代码来获取来自Web服务的数据长度。
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
[webData setLength: 0];
NSLog(@"%f",[[NSNumber numberWithLong:[response expectedContentLength]] floatValue]);
}
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[webData appendData:data];
[webData retain];
}
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"Error : %@",error);
}
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
}