Skip to content

Instantly share code, notes, and snippets.

@napolux
Created January 19, 2013 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save napolux/4573698 to your computer and use it in GitHub Desktop.
Save napolux/4573698 to your computer and use it in GitHub Desktop.
Connection check in iOS: the simple way.
- (BOOL)connectedToNetwork {
NSURL* url = [[NSURL alloc] initWithString:@"http://google.com/"];
NSData* data = [NSData dataWithContentsOfURL:url];
if (data != nil)
return YES;
return NO;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment