Skip to content

Instantly share code, notes, and snippets.

@piaoapiao
Created August 14, 2012 03:23
Show Gist options
  • Save piaoapiao/3346042 to your computer and use it in GitHub Desktop.
Save piaoapiao/3346042 to your computer and use it in GitHub Desktop.
网络检测
Reachability *hostReach = [[Reachability reachabilityWithHostName:@"http://www.baidu.com"] retain];
[hostReach startNotifier];
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(reachabilityChanged:)
name: kReachabilityChangedNotification object: nil];
- (void) reachabilityChanged: (NSNotification*)note{
NSLog(@"changed Net");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment