Possible Duplicate:
How to check for an active Internet Connection on iPhone SDK?
I am worried if this code will be approved by apple for checking whether an internet connection exists.
Now is this code is alright, or am I still missing something? Edited code:
Reachability* reachability = [Reachability reachabilityWithHostName:@"www.apple.com"];
NetworkStatus remoteHostStatus = [reachability currentReachabilityStatus];
if(remoteHostStatus == NotReachable) { NSLog(@"not reachable");}
else if (remoteHostStatus == ReachableViaWWAN) { NSLog(@"reachable via wwan");}
else if (remoteHostStatus == ReachableViaWiFi) { NSLog(@"reachable via wifi");}