Skip to content

Instantly share code, notes, and snippets.

@mrakowski
Created November 2, 2012 18:36
Show Gist options
  • Save mrakowski/4003432 to your computer and use it in GitHub Desktop.
Save mrakowski/4003432 to your computer and use it in GitHub Desktop.
iOS: check for data connection
// Check for data connection with Reachability.m
#import "Reachability.h"
Reachability *currentReachability = [Reachability reachabilityForInternetConnection];
NetworkStatus networkStatus = [currentReachability isReachable];
if (networkStatus != 0)
{
// Network is reachable
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment