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

Has anyone found a halfway decent guide to implementing Reachability on iOS4? I have yet to find one.

Thanks in advance!

share|improve this question

1 Answer

up vote 91 down vote accepted

I have implemented Reachability like this. Download https://developer.apple.com/iphone/library/samplecode/Reachability/index.html and add Reachability.h and .m to your project. Add the SystemConfiguration framework to your project. #import "Reachability.h" where you want to use it. Use this code.

-(BOOL)reachable {
    Reachability *r = [Reachability reachabilityWithHostName:@"enbr.co.cc"];
    NetworkStatus internetStatus = [r currentReachabilityStatus];
    if(internetStatus == NotReachable) {
        return NO;
    }
    return YES;
}

When you want to check for reachability...

if ([self reachable]) {
    NSLog(@"Reachable");
}
else {
    NSLog(@"Not Reachable");
}

Here is the example project that I made. http://dl.dropbox.com/u/3656129/ReachabilityExample.zip

share|improve this answer
Thanks! It worked great. – esqew Oct 17 '10 at 23:41
Hey, I'm using a version of this code, and its working nicely. All the other information i find on the internet seems to use notifications, and for WifiReach, InternetReach, and Host reach. This seems like a much more clean way to go. Is there a downside i'm not seeing? – AVeryDev Nov 11 '10 at 4:30
No. Not as far as I know. Just make sure the host you're checking is up and not blocked. – enbr Nov 12 '10 at 5:34
When should you check for reachability? in applicationDidFinishLaunching? – Sheehan Alam Jun 26 '11 at 2:10
1  
@AVeryDev - the notifications thing is from Apple's own reachability example. It tracks internet connectivity, and notifies the app when the device switched connections. Use if your app is interested in changes to connectivity. Otherwise the above is obviously a lot simpler. – n13 Aug 17 '11 at 7:09
show 4 more comments

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.