Advertisement
Guest User

Untitled

a guest
Oct 28th, 2014
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     [self setReachability:[Reachability reachabilityWithHostName:@"http://www.google.com"]];
  2.     [[self reachability] setReachableOnWWAN: NO];
  3.     [[self reachability] setReachableBlock:^(Reachability * reach) {
  4.         NSLog(@"El dispositivo cuenta con conexión a internet!");
  5.     }];
  6.    
  7.     [[self reachability] setUnreachableBlock:^(Reachability * reach) {
  8.         NSLog(@"No hay conexión a internet en estos momentos!");
  9.     }];
  10.  
  11.     [[self reachability] startNotifier];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement