Skip to content

Instantly share code, notes, and snippets.

@Geri-Borbas
Last active December 18, 2015 13:19
Show Gist options
  • Save Geri-Borbas/5789208 to your computer and use it in GitHub Desktop.
Save Geri-Borbas/5789208 to your computer and use it in GitHub Desktop.
Asking for Reachability is actually three lines of code.
SCNetworkReachabilityRef reachabilityRef = SCNetworkReachabilityCreateWithName(NULL, [@"google.com" UTF8String]);
SCNetworkReachabilityFlags reachabilityFlags;
SCNetworkReachabilityGetFlags(reachabilityRef, &reachabilityFlags);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment