I offer you this library
It uses NSNotification, and you can make any changes to it if you need to install it in your own way.
This is an example of the code provided by this library.
Reachability* reach = [Reachability reachabilityWithHostname:@"www.google.com"];
reach.reachableOnWWAN = NO;
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reachabilityChanged:)
name:kReachabilityChangedNotification
object:nil];
[reach startNotifier];
Hope this helps
source
share