how to get the http header in asynchronous request mode using ASIHHTTP
- by user262325
Hello everyone
I hope to display the download file size by reading http header.
I know there is way do this:
ASIHTTPRequest request = [ASIHTTPRequest requestWithURL:url];
[request startSynchronous]; NSString poweredBy = [[request responseHeaders] objectForKey:@"X-Powered-By"];
NSString *contentType = [[request responseHeaders] objectForKey:@"Content-Type"];
but this is Synchronous mode, in Asynchronous mode it can be done as below:
(void)requestFinished:(ASIHTTPRequest *)request { unsigned long long contentLength = [request contentLength]; }
but 'requestFinished' is at the end of download.
Is there an event to get the http header info at the beginning of download?
Thank
interdev