我正在使用以下代码来测试互联网连接是否可用,
NSLog(@"Testing internet connection");
Reachability *internetReach = [Reachability reachabilityWithHostName:@"google.com"];
if([internetReach currentReachabilityStatus] == NotReachable) {
NSLog(@"Internet connection is not Rechable");
} else {
NSLog(@"Internet connection is Rechable");
}
但是测试互联网连接需要太多时间,有什么办法可以减少时间??
谢谢