Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class that implements the delegate NSUrlConnection, from connection didFailWithError. How can I detect an error caused when there is no Internet connection?

share|improve this question

1 Answer

According to my memory, the error code of the missing Internet connection is -1009. In method

-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error 

try checking [error code]

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.