I am using NSURLConnection in order to get some xml files from a web server. When the server is down, I want to inform the user. I cannot find any delegate for checking if the request did succeed or not.
As I understand it - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error is only for receiving errors during the actual download.
Any thoughts?
Thank you
yeah if your server is down then
method will return the possible reason & u can alert to user 🙂