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

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?

share|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
1  
Rather return (BOOL)URLString;, or even better, return !!URLString or return URLString != nil – H2CO3 Jun 24 '12 at 20:48

19 Answers

up vote 594 down vote accepted

METHOD 1: Use a simple (ARC and GCD compatible) class to do it

1) Add Tony Million's version of Reachability.h and Reachability.m to the project (found here: https://github.com/tonymillion/Reachability)

2) Update the interface section

#import "Reachability.h"

// Add this to the interface in the .m file of your view controller
@interface MyViewController ()
{
    Reachability *internetReachableFoo;
}
@end

3) Then implement this method in the .m file of your view controller which you can call

// Checks if we have an internet connection or not
- (void)testInternetConnection
{   
    internetReachableFoo = [Reachability reachabilityWithHostname:@"www.google.com"];

    // Internet is reachable
    internetReachableFoo.reachableBlock = ^(Reachability*reach)
    {
        // Update the UI on the main thread
        dispatch_async(dispatch_get_main_queue(), ^{
            NSLog(@"Yayyy, we have the interwebs!");
        });
    };

    // Internet is not reachable
    internetReachableFoo.unreachableBlock = ^(Reachability*reach)
    {
        // Update the UI on the main thread
        dispatch_async(dispatch_get_main_queue(), ^{
            NSLog(@"Someone broke the internet :(");
        });
    };

    [internetReachableFoo startNotifier];
}

METHOD 2: Do it yourself the old way using Apple's outdated Reachability class

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

2) Add Apple's version of 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.


Important Note: The Reachability class is one of the most used classes in projects so you might run into naming conflicts with other projects like ShareKit. If this happens, you'll have to rename one of the pairs of Reachability.h and Reachability.m files to something else to resolve the issue.

share|improve this answer
2  
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
4  
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
119  
"The Internet Is Down." :D – Henrik Erlandsson Feb 18 '11 at 14:53
8  
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
8  
and add #import <netinet/in.h> to Reachability.h to fix the "declaration of 'struct sockaddr_in' will not be visible outside of this function" warning – Patch Aug 21 '12 at 8:17
show 24 more comments

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.

share|improve this answer
1  
Great. This is exactly what I wanted... Nice code Cannyboy!! – Aqueel Feb 20 '12 at 10:23
2  
love this, perfect and simple. – MattStacey Mar 30 '12 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 '12 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 '12 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 '12 at 5:35
show 2 more comments

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.

share|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

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.

share|improve this answer
3  
Fantastic! The accepted answer doesn't work, but this does, and it's much slimmer. This should be the accepted answer. – Jezen Thomas 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 '12 at 12:47
3  
For anyone wondering how you call this function. Do this ... if([self hasConnectivity] == NO) { // not connected } else { //connected do your stuff} – Sam Budda Aug 8 '12 at 18:54
2  
This leaks memory - the 'readability' structure (object, thing) needs to be freed with CFRelease(). – Russell Mull Nov 20 '12 at 8:52
show 8 more comments

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.

share|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
5  
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

Here's a very simple answer:

NSURL *scriptUrl = [NSURL URLWithString:@"http://apps.wegenerlabs.com/hi.html"];
NSData *data = [NSData dataWithContentsOfURL:scriptUrl];
if (data)
    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.

share|improve this answer
Greatest version. Thanks! – wzbozon Sep 11 '12 at 19:44
2  
I really like this idea, but I would say for the 99.999% reliability while maintaining a small response size, go with www.google.com/m which is the mobile view for google. – rwyland Sep 23 '12 at 5:46
brilliant!!!!!! – RubberDuck Nov 4 '12 at 17:51
while not as flexible as the Reachability variants, this one often is much easier to handle. I like that Reachability will actually use NotificationCenter to handle network status changes, but on the downside I kept battling it as it gave me several notifications for every network change - quite annoying. – SaltyNuts Nov 29 '12 at 19:25

Apple provides a sample app which does exactly this:

Reachability

share|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

Accurate checking (Reachability Method):

Import:

#import "Reachability.h"

BOOL:

-(BOOL)CheckNetwork   {
ATReachability *Reachability = [ATReachability reachabilityWithHostName:@"www.google.com"];
NetworkStatus NetworkStatus = [Reachability currentReachabilityStatus];
return NetworkStatus; }

Check Code:

if([self CheckNetwork] == NotReachable) { /* No Network */ } else { /* Network */ }

Example:

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
    if([self CheckNetwork] == NotReachable) {
        /* No Network */ 
    } else { 
        /* Network */
    }
}

.

Or you could do (UIWebView Method):

-(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.\"}"]) { /* No Network */ }
    if ([checkError isEqualToString:@"Could not connect to the server.\"}"]) { /* No Network */ }
    if ([checkError isEqualToString:@"\"connection appears to be offline.\"}"]) { /* No Network */ }
    if ([checkError isEqualToString:@"connection appears to be offline.\"}"]) { /* No Network */ }
}
share|improve this answer
1  
Tip: Works great with SVProgressHUD ;) – Aleksander Azizi May 30 '12 at 1:31

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");}
share|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

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

share|improve this answer

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

Reachability

share|improve this answer

Here is how I do it in my apps: While a 200 status response code doesn't guarantee anything, it is stable enough for me. This doesn't require as much loading as the NSData answers posted here, as mine just checks the HEAD response. :)

- (BOOL)connectedToInternet
{
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:
    [NSURL URLWithString:@"http://www.google.com/"]];

    [request setHTTPMethod:@"HEAD"];

    NSHTTPURLResponse *response;

    [NSURLConnection sendSynchronousRequest:request
    returningResponse:&response error: NULL];

    return ([response statusCode] == 200) ? YES : NO;
}

- (void)yourMethod
{                  
    if([self connectedToInternet] == NO)                  
    {   
        // Not connected to the internet
    }
    else
    {
        // Connected to the internet
    }
}
share|improve this answer
1  
Seems like this is the fastest way – Pavel Mar 21 at 8:28
Caution: In my experience, this solution doesn't work all the time. In many cases the response returned is 403, after taking its sweet time. This solution seemed perfect, but doesn't guarantee 100% results. – Mustafa May 9 at 7:54
Let's figure out a way to improve on the code and make it more perfect. – troop231 May 10 at 1:06

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).

share|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. – RubberDuck Nov 21 '09 at 2:43

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

share|improve this answer
1  
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 '12 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 '12 at 6:22
- (void)viewWillAppear:(BOOL)animated
{
NSString *URL = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.google.com"]];

return (URL != NULL ) ? YES : NO;
}

Or use Reachability class

There are two way to check internet availbility in iPhone SDK

1. Check the Google page is opened or not.

2. Reachability Class

For more information please refer the link Reachability

share|improve this answer
please take a bit more care of your formatting ... – kleopatra Nov 22 '12 at 11:48
1  
There are two way to check internet availbility in iPhone SDK 1)Check the Google page is opened or not. – kbv Nov 22 '12 at 12:04
-1 : This is a synchronous method that will block the main thread (the one that the app UI is changed on) while it tries to connect to google.com. If your user is on a very slow data connection, the phone will act like the process is unresponsive. – iWasRobbed Mar 25 at 23:05

If you're using AFNetworking you can use its own implementation for internet reachability status.

The best way to use AFNetworking is to subclass the AFHTTPClient class and use this class to do your network connections.

One of the advantages of using this approach is that you can use blocks to set the desired behavior when the reachability status changes. Supposing that I've created a singleton subclass of AFHTTPClient (as said on the "Subclassing notes" on AFNetworking docs) named BKHTTPClient, I'd do something like:

BKHTTPClient *httpClient = [BKHTTPClient sharedClient];
[httpClient setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status)
{
    if (status == AFNetworkReachabilityStatusNotReachable) 
    {
    // Not reachable
    }
    else
    {
        // Reachable
    }
}];

You could also check for Wi-Fi or WLAN connections specifically using the AFNetworkReachabilityStatusReachableViaWWAN and AFNetworkReachabilityStatusReachableViaWiFi enums (more here).

share|improve this answer
-(void)newtworkType {

 NSArray *subviews = [[[[UIApplication sharedApplication] valueForKey:@"statusBar"] valueForKey:@"foregroundView"]subviews];
NSNumber *dataNetworkItemView = nil;

for (id subview in subviews) {
    if([subview isKindOfClass:[NSClassFromString(@"UIStatusBarDataNetworkItemView") class]]) {
        dataNetworkItemView = subview;
        break;
    }
}


switch ([[dataNetworkItemView valueForKey:@"dataNetworkType"]integerValue]) {
    case 0:
        NSLog(@"No wifi or cellular");
        break;

    case 1:
        NSLog(@"2G");
        break;

    case 2:
        NSLog(@"3G");
        break;

    case 3:
        NSLog(@"4G");
        break;

    case 4:
        NSLog(@"LTE");
        break;

    case 5:
        NSLog(@"Wifi");
        break;


    default:
        break;
}
}
share|improve this answer
#import "Reachability.h"

//check the network

+(BOOL)checkNet{

  Reachability *netStatus=[Reachability reachabilityWithHostName:@"www.google.com"];

  if ([netStatus currentReachabilityStatus] == NotReachable){
    return NO;
  }
  return YES;
}
share|improve this answer
first download reachability class and put reachability.h and reachabilty.m file in your xcode.

Best way is make common Functions class (NSObject) so that you can use it any class.

these are two methods for network connection reachability check

+(BOOL) reachabiltyCheck
{
    NSLog(@"reachabiltyCheck");
    BOOL status =YES;
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(reachabilityChanged:)
                                                 name:kReachabilityChangedNotification
                                               object:nil];
    Reachability * reach = [Reachability reachabilityForInternetConnection];
    NSLog(@"status : %d",[reach currentReachabilityStatus]);
    if([reach currentReachabilityStatus]==0)
    {
        status = NO;
        NSLog(@"network not connected");
    }
    reach.reachableBlock = ^(Reachability * reachability)
    {
        dispatch_async(dispatch_get_main_queue(), ^{
        });
    };
    reach.unreachableBlock = ^(Reachability * reachability)
    {
        dispatch_async(dispatch_get_main_queue(), ^{
        });
    };
    [reach startNotifier];
    return status;
}

+(BOOL)reachabilityChanged:(NSNotification*)note
{
    BOOL status =YES;
    NSLog(@"reachabilityChanged");
    Reachability * reach = [note object];
    NetworkStatus netStatus = [reach currentReachabilityStatus];
    switch (netStatus)
    {
        case NotReachable:
        {
            status = NO;
            NSLog(@"Not Reachable");
        }
        break;
        default:
        {
            if (!isSyncingReportPulseFlag)
            {
                status = YES;
                isSyncingReportPulseFlag = TRUE;
                [DatabaseHandler checkForFailedReportStatusAndReSync];
            }
        }
            break;
    }
    return status;
}
+ (BOOL) connectedToNetwork
{
    // Create zero addy
    struct sockaddr_in zeroAddress;
    bzero(&zeroAddress, sizeof(zeroAddress));
    zeroAddress.sin_len = sizeof(zeroAddress);
    zeroAddress.sin_family = AF_INET;
    // Recover reachability flags
    SCNetworkReachabilityRef defaultRouteReachability = SCNetworkReachabilityCreateWithAddress(NULL, (struct sockaddr *)&zeroAddress);
    SCNetworkReachabilityFlags flags;
    BOOL didRetrieveFlags = SCNetworkReachabilityGetFlags(defaultRouteReachability, &flags);
    CFRelease(defaultRouteReachability);
    if (!didRetrieveFlags)
    {
        NSLog(@"Error. Could not recover network reachability flags");
        return NO;
    }
    BOOL isReachable = flags & kSCNetworkFlagsReachable;
    BOOL needsConnection = flags & kSCNetworkFlagsConnectionRequired;
    BOOL nonWiFi = flags & kSCNetworkReachabilityFlagsTransientConnection;
    NSURL *testURL = [NSURL URLWithString:@"http://www.apple.com/"];
    NSURLRequest *testRequest = [NSURLRequest requestWithURL:testURL  cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:20.0];
    NSURLConnection *testConnection = [[NSURLConnection alloc] initWithRequest:testRequest delegate:self];
    return ((isReachable && !needsConnection) || nonWiFi) ? (testConnection ? YES : NO) : NO;
}

now you can check network connection in any class by calling this class method

share|improve this answer

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.