I have successfully implemented the ASIHTTPRequest framework to download a file from a URL and it saves in my Document Directory – YIPPIE!!!
Now I would like to show a Progress of some sort, so that the user can what is going on.
With the UIWebViewDelegate there are the following methods – I was hoping to use something similar.
-(void)webViewDidStartLoad:(UIWebView *)webView
-(void)webViewDidFinishLoad:(UIWebView *)webView
Is there something similar to use with ASIHTTP??
Here is an example mixing MBProgressHUD and ASI.
The idea is you start your updating before the begin the request and you end the updating in either the completion or failed blocks.