标签:
前提:工程添加:SystemConfiguration.framework
然后在需要判断的类中包含头文件:
#import "Reachability.h"
下面是我写的一个方法:
#pragma mark - 检测网络连接
+ (BOOL)isConnectionAvailable
{
BOOL isExistenceNetwork = YES;
DDReachability *reach = [DDReachability reachabilityWithHostname:@"www.apple.com"];
switch ([reach currentReachabilityStatus]) {
case NotReachable:
isExistenceNetwork = NO;
//NSLog(@"notReachable");
break;
case ReachableViaWiFi:
isExistenceNetwork = YES;
//NSLog(@"WIFI");
break;
case ReachableViaWWAN:
isExistenceNetwork = YES;
//NSLog(@"3G");
break;
}
if (!isExistenceNetwork) {
UIAlertView *alertview = [[UIAlertView alloc] initWithTitle:nil message:@"当前网络不可用,请检查网络连接!" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil];
[alertview show];
return NO;
}else{
return isExistenceNetwork;
}
}
然后在需要判断的地方直接:
//能联网去请求数据
if ([self isConnectionAvailable]) {
}
大家看懂了吧,就这么简单。
所以举一反三,如果你不单单是判断是否网络通畅,而是要判断是WIFI或3G,再写一个isEnableWIFI的方法,具体判断方法就不用再赘述了吧,currentReachabilityStatus判断之。
标签:
原文地址:http://www.cnblogs.com/huangzs/p/4488447.html