I would like to check to see if I have an Internet connection on the iPhone using the Cocoa Touch libraries.

I came up with a way to do this using an NSUrl. The way I did it seems a bit unreliable (because even Google could one day be down and relying on a 3rd party seems bad) and while I could check to see for a response from some other websites if Google didn't respond, it does seem wasteful and an unnecessary overhead on my application.

- (BOOL) connectedToInternet
{
    NSString *URLString = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.google.com"]];
    return ( URLString != NULL ) ? YES : NO;
}

Is what I have done bad? (Not to mention 'stringWithContentsOfURL' is deprecated in 3.0) And if so what is a better way to accomplish this?

link|improve this question

You could replace the last line with: return (id)URLString; (Omitting the cast will also work, but might give you a compiler warning.) – Felixyz Jul 5 '09 at 9:18
feedback

14 Answers

up vote 318 down vote accepted

Use a simple library to do it:

https://github.com/tonymillion/Reachability (ARC and GCD Compatible Reachability)

OR... Do it yourself:

1) Add SystemConfiguration framework to the project but don't worry about including it anywhere

2) Add Reachability.h and Reachability.m to the project (you can get those here)

3) Add @class Reachability; to the .h file of where you are implementing the code

4) Create a couple instances to check in the interface section of the .h file:

Reachability* internetReachable;
Reachability* hostReachable;

5) Add a method in the .h for when the network status updates:

-(void) checkNetworkStatus:(NSNotification *)notice;

6) Add #import "Reachability.h" to the .m file where you are implementing the check

7) In the .m file of where you are implementing the check, you can place this in one of the first methods called (init or viewWillAppear or viewDidLoad etc):

-(void) viewWillAppear:(BOOL)animated
{
    // check for internet connection
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkNetworkStatus:) name:kReachabilityChangedNotification object:nil];

    internetReachable = [[Reachability reachabilityForInternetConnection] retain];
    [internetReachable startNotifier];

    // check if a pathway to a random host exists
    hostReachable = [[Reachability reachabilityWithHostName: @"www.apple.com"] retain];
    [hostReachable startNotifier];

    // now patiently wait for the notification
}

8) Set up the method for when the notification gets sent and set whatever checks or call whatever methods you may have set up (in my case, I just set a BOOL)

-(void) checkNetworkStatus:(NSNotification *)notice
{
    // called after network status changes
    NetworkStatus internetStatus = [internetReachable currentReachabilityStatus];
    switch (internetStatus)
    {
        case NotReachable:
        {
            NSLog(@"The internet is down.");
            self.internetActive = NO;

            break;
        }
        case ReachableViaWiFi:
        {
            NSLog(@"The internet is working via WIFI.");
            self.internetActive = YES;

            break;
        }
        case ReachableViaWWAN:
        {
            NSLog(@"The internet is working via WWAN.");
            self.internetActive = YES;

            break;
        }
    }

    NetworkStatus hostStatus = [hostReachable currentReachabilityStatus];
    switch (hostStatus)
    {
        case NotReachable:
        {
            NSLog(@"A gateway to the host server is down.");
            self.hostActive = NO;

            break;
        }
        case ReachableViaWiFi:
        {
            NSLog(@"A gateway to the host server is working via WIFI.");
            self.hostActive = YES;

            break;
        }
        case ReachableViaWWAN:
        {
            NSLog(@"A gateway to the host server is working via WWAN.");
            self.hostActive = YES;

            break;
        }
    }
}

9) In your dealloc or viewWillDisappear or similar method, remove yourself as an observer

-(void) viewWillDisappear:(BOOL)animated
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

Note: There might be an instance using viewWillDisappear where you receive a memory warning and the observer never gets unregistered so you should account for that as well.

link|improve this answer
1  
Step 2) Add Reachability.h and Reachability.m to the project What do you mean by that? How shall we add it? create empty class or somehow else? Thanks – Burjua Oct 13 '10 at 15:49
2  
Reachability.h and .m are included in Apple's Reachability example in the iPhone OS Reference Library. You get those files from there. – iWasRobbed Oct 13 '10 at 22:58
34  
"The Internet Is Down." :D – Henrik Erlandsson Feb 18 '11 at 14:53
3  
I think if "google.com" isn't reachable, then, yes, the Internet has problems! But, if your app requires Internet connectivity in general, google is as general as it gets! If it requires access to a particular server then why not use that server for testing? – gonzobrains Jun 14 '11 at 10:55
1  
@gonzobrains Most of the time when you need access to the internet you want to connect to your own servers. So why not test for your own servers. If you use multiple web services on multiple domains you can use one Reachability per domain used. – Coyote Mar 12 at 10:34
show 18 more comments
feedback

Edit: This used to be the correct answer, but is now outdated as you should subscribe to notifications for reachability instead. This methods checks synchronously:

You can use Apple's Reachability class. It will also allow you to check if WiFi is enabled:

Reachability* reachability = [Reachability sharedReachability];
[reachability setHostName:@"www.example.com"];    // set your host name here
NetworkStatus remoteHostStatus = [reachability remoteHostStatus];

if(remoteHostStatus == NotReachable) { }
else if (remoteHostStatus == ReachableViaWiFiNetwork) { }
else if (remoteHostStatus == ReachableViaCarrierDataNetwork) { }

The Reachability class is not shipped with the SDK, but rather a part of this Apple sample application. Just download it and copy Reachability.h/m to your project. Also, you have to add the SystemConfiguration framework to your project.

link|improve this answer
6  
See my comment above about not using Reachability like that. Use it in asynchronous mode and subscribe to the notifications it sends - don't. – Kendall Helmstetter Gelner Jul 6 '09 at 4:29
This code is a good starting point for things that you need to set before you can use the delegate methods for the reachability class. – Brock Woolf Jul 6 '09 at 13:42
feedback

I like to keep things simple. The way I do this is:

//Class.h
#import "Reachability.h"
#import <SystemConfiguration/SystemConfiguration.h>

- (BOOL)connected ;



//Class.m
- (BOOL)connected 
{
    Reachability *reachability = [Reachability reachabilityForInternetConnection];  
    NetworkStatus networkStatus = [reachability currentReachabilityStatus]; 
    return !(networkStatus == NotReachable);
}

Then, I use this whenever I wanna see if I have a connection:

   if(![self connected])
    {
        // not connected    
    } else
    {
        // connected, do some internet stuff 
    }

This method doesn't wait for changed network statuses in order to do stuff, it just tests the status when you ask it to.

link|improve this answer
Great. This is exactly what I wanted... Nice code Cannyboy!! – Aqueel Feb 20 at 10:23
love this, perfect and simple. – MattStacey Mar 30 at 15:24
@cannyboy I just tried implementing you code as it seemed the simplest and it worked well.. Until I tested something. I disconnected the adsl line from my router, so in effect keeping the wifi network up but taking down the internet connection. Despite this the code when run still seems to think it is connected to the internet. Have you tried this? Is there a way to make sure that it is actually connected to the internet and not just to a network? – msec May 2 at 10:29
Hi @msec, you can try Andrew Zimmer solution in this page, it works fine with adsl disconnected (and wifi connected) – Williew May 5 at 2:30
Hi @Williew I tried implementing Andrew Zimmer's solution, I copied it as it was above and it still does not work. If you have managed to get it to get this code to check beyond simply a WiFi connection then I assume that you have made some modifications to his code? If so, could you post them? From my understanding it cannot work with kSCNetworkReachabilityFlags as this only check to see if a packet leaves the device, it does not check to see if the host received the packet. – msec May 6 at 5:35
show 1 more comment
feedback

Using Apple's Reachability code I created a function that'll check this correctly without you having to include any classes.

Include the SystemConfiguration.framework in your project.

Make some imports

#import <sys/socket.h>
#import <netinet/in.h>
#import <SystemConfiguration/SystemConfiguration.h>

Now just call this function

/* 
Connectivity testing code pulled from Apple's Reachability Example: http://developer.apple.com/library/ios/#samplecode/Reachability
 */
+(BOOL)hasConnectivity {
    struct sockaddr_in zeroAddress;
    bzero(&zeroAddress, sizeof(zeroAddress));
    zeroAddress.sin_len = sizeof(zeroAddress);
    zeroAddress.sin_family = AF_INET;

    SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithAddress(kCFAllocatorDefault, (const struct sockaddr*)&zeroAddress);
    if(reachability != NULL) {
        //NetworkStatus retVal = NotReachable;
        SCNetworkReachabilityFlags flags;
        if (SCNetworkReachabilityGetFlags(reachability, &flags)) {
            if ((flags & kSCNetworkReachabilityFlagsReachable) == 0)
            {
                // if target host is not reachable
                return NO;
            }

            if ((flags & kSCNetworkReachabilityFlagsConnectionRequired) == 0)
            {
                // if target host is reachable and no connection is required
                //  then we'll assume (for now) that your on Wi-Fi
                return YES;
            }


            if ((((flags & kSCNetworkReachabilityFlagsConnectionOnDemand ) != 0) ||
                 (flags & kSCNetworkReachabilityFlagsConnectionOnTraffic) != 0))
            {
                // ... and the connection is on-demand (or on-traffic) if the
                //     calling application is using the CFSocketStream or higher APIs

                if ((flags & kSCNetworkReachabilityFlagsInterventionRequired) == 0)
                {
                    // ... and no [user] intervention is needed
                    return YES;
                }
            }

            if ((flags & kSCNetworkReachabilityFlagsIsWWAN) == kSCNetworkReachabilityFlagsIsWWAN)
            {
                // ... but WWAN connections are OK if the calling application
                //     is using the CFNetwork (CFSocketStream?) APIs.
                return YES;
            }
        }
    }

    return NO;
}

And it's iOS5 tested for ya.

link|improve this answer
Fantastic! The accepted answer doesn't work, but this does, and it's much slimmer. This should be the accepted answer. – JezenThomas Nov 3 '11 at 14:38
Can u describe this code? How does this check works? – Valery Pavlov Dec 2 '11 at 10:52
This works well, thanks for sharing – Artanis Feb 3 at 12:47
Works well on iOS3.0 too, thx – Hussain Saleem Mar 7 at 3:58
@JezenThomas This doesn't perform the internet check asynchronously, which is why it is "much slimmer"... You should always be doing this asynchronously by subscribing to notifications so that you don't hang up the app on this process. – iWasRobbed May 3 at 5:29
show 1 more comment
feedback

Apple supplies sample code to check for different types of network availability. Alternatively there is an example in the iPhone developers cookbook.

Note: Please see @KHG's comment on this answer regarding the use of Apple's reachability code.

link|improve this answer
Thanks. I discovered that the Xcode documentation in 3.0 also contains the source code, found by searching for "reachability" in the documentation. – Brock Woolf Jul 5 '09 at 11:37
4  
Note that from experience, you should NOT use the Reachability code as-is. Note the part where the code mentions uncommenting a bit to use it asynchronosouly? Use that to get connectivity notifications. Also, always set the host value for reachability and do not use the reachability code as a pre-flight check to see if a connection is OK. Instead, start the Reachability notifications, then start you connection going - you'll get a notification right away if there i no connection and you can cancel the original request then issue an alert or do whatever you need to do. – Kendall Helmstetter Gelner Jul 6 '09 at 4:26
4  
Note that the new revision (09-08-09) of the Reachability sample code from Apple is asynchronous. – Daniel Hepper Jan 17 '10 at 21:03
feedback

Apple provides a sample app which does exactly this:

http://developer.apple.com/iphone/library/samplecode/Reachability/index.html

link|improve this answer
2  
You should note that the Reachability sample only detects which interfaces are active, but not which ones have a valid connection to the internet. Applications should gracefully handle failure even when Reachability reports that everything is ready to go. – rpetrich Jul 5 '09 at 11:17
Happily the situation is a lot better in 3.0, as the system will present a login page for users behind a locked down WiFi where you have to login to use... you use to have to check for the redirect manually (and you still do if developing 2.2.1 apps) – Kendall Helmstetter Gelner Jul 6 '09 at 4:28
feedback

Nice topic, a bit old but thanks anyway it helped me. Only the Reachability class has been updated. You can now use:

Reachability* reachability = [Reachability reachabilityWithHostName:@"www.apple.com"];
NetworkStatus remoteHostStatus = [reachability currentReachabilityStatus];

if(remoteHostStatus == NotReachable) { NSLog(@"not reachable");}
else if (remoteHostStatus == ReachableViaWWAN) { NSLog(@"reachable via wwan");}
else if (remoteHostStatus == ReachableViaWiFi) { NSLog(@"reachable via wifi");}
link|improve this answer
1  
Unless something changed since 4.0 was released, that code is not asynchronous and you are guaranteed to see it show up in Crash Reports - happened to me before. – bpapa Aug 27 '10 at 15:10
1  
I agree with bpapa. It's not a good idea to use synchronous code. Thanks for the info though – Brock Woolf Aug 27 '10 at 18:28
feedback

The type of check that you propose would not accomplish anything since the connection could be lost immediately after the check or during the subsequent operation. Instead, you should put code that requires an internet connection in separate threads (I recommend using NSOperation and/or NSInvocationOperation for this task). If the data is not received within a certain period of time, inform the user that a connection could not be established.

link|improve this answer
feedback

Here´s a version on Reachability for iOS 5, its not mine! =) https://gist.github.com/1182373

link|improve this answer
feedback

There's a nice-looking, ARC- and GCD-using modernization of Reachability here:

https://github.com/tonymillion/Reachability

link|improve this answer
feedback

I've used the code in this discussion, and it seems to work fine (read the whole thread!).

I haven't tested it exhaustively with every conceivable kind of connection (like ad hoc wifi).

link|improve this answer
this code is not totally good because it just checks to see if you have wifi connection with a router, not if the web can be reached. You can have wifi working and continue enable to reach the web. – Digital Robot Nov 21 '09 at 2:43
feedback

You could do:

-(IBAction)NetworkCheck {
//Use this to "call" the check
UIWebView *networkChecker = [[UIWebView alloc] init];
[networkChecker loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com/"]]];
}

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
NSString *checkError = [[error debugDescription] substringFromIndex:[[error debugDescription] length] -35];

if ([checkError isEqualToString:@"\"Could not connect to the server.\"}"]) {[self ShowErrorMessage];}
if ([checkError isEqualToString:@"Could not connect to the server.\"}"]) {[self ShowErrorMessage];}
if ([checkError isEqualToString:@"\"connection appears to be offline.\"}"]) {[self ShowErrorMessage];}
if ([checkError isEqualToString:@"connection appears to be offline.\"}"]) {[self ShowErrorMessage];}
}
link|improve this answer
tip: works great with SVProgressHud ;) – Aleksander Azizi May 15 at 18:48
feedback

Here's a very simple answer:

NSURL *scriptUrl = [NSURL URLWithString:@"http://apps.wegenerlabs.com/hi.html"];
NSData *data = [NSData dataWithContentsOfURL:scriptUrl];
if (data != nil)
    NSLog(@"Device is connected to the internet");
else
    NSLog(@"Device is not connected to the internet");

The URL points to an extremely small website that can be loaded fast in a cellular network. You are welcome to use my website, but you can also put a small file on your own website.

If checking whether the device is somehow connected to the internet is everything you want to do, I'd definitely recommend using this simple solution.

link|improve this answer
feedback

You have the reachability library, here made by apple just for this purpose.

link|improve this answer
Its generally not a good idea to copy-paste a library made by apple for copyright reasons. So, I linked to the project by apple instead. – Richard J. Ross III Jan 13 at 18:11
i am sorry... i guess you might get idea. as i have did in my project. i will keep in mind this – DipakSonara Jan 16 at 6:22
feedback

protected by Jeff Atwood Jan 24 '11 at 10:06

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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