I have to check internet connection sometimes and use "Reachability" for this purpose.
Would be better to manually checking internet connection using "Reachability" like:
BOOL status = ([[Reachability reachabilityForInternetConnection] currentReachabilityStatus] != NotReachable);
Or use Reachability notifications and
//Start listening for reachability notifications on the current run loop
- (BOOL) startNotifier;
Do notifications require some phone recources like battery etc, and will I get some problems if I don't use "stopNotifier"?
Thanks
It's very simple: