网络状态判断
- (IBAction)doNetButton:(id)sender {
Reachability *hostReach=[Reachability reachabilityWithHostName:@"www.baidu.com"];//网络可达性
NetworkStatus status=[hostReach currentReachabilityStatus]; //网络状态
//判断网络状态
switch (status) {
case NotReachable:
NSLog(@"没有网络连接");
break;
case ReachableViaWiFi:
NSLog(@"wifi网络连接");
break;
case ReachableViaWWAN:
NSLog(@"2G/3G/4G网络连接");
break;
default:
break;
}
}