iOS网络状态监测下Reachability的使用

1.Reachability简介

Reachability是一个在iOS系统环境下检测iOS设备当前的网络环境的库。它的主要功能是监测三种网络环境:2G/3G/4G、WiFi网络、无网络。在应用的运行状态下,实时监测网络连接方式的变更,及时给出通知。

2.Reachability的使用

首先需要在GitHub上下载Reachability的压缩包,解压后将Reachability.h和Reachability.m文件拖入工程当中,在使用的地方引入头文件即可。

iOS网络状态监测下Reachability的使用_第1张图片

直接获取当前网络环境:

//可以使用多种方式初始化

Reachability*reach=[ReachabilityreachabilityWithHostName:@"www.hcios.com"];

//判断当前的网络状态

switch([reach currentReachabilityStatus]){

caseReachableViaWWAN:

NSLog(@"正在使用移动数据网络");

break;

caseReachableViaWiFi:

NSLog(@"正在使用WiFi");

break;

default:

NSLog(@"无网络");

break;

}

根据currentReachabilityStatus方法获取当前的网络环境,ReachableViaWWAN表示移动数据网络,ReachableViaWiFi表示WiFi网络,NotReachable表示没有接入网络。

通知的方式获取当前网络环境:

//可以使用多种方式初始化

Reachability*reach=[ReachabilityreachabilityWithHostName:@"www.hcios.com"];

//通知中心注册通知

[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(reachabilityChanged:)name:kReachabilityChangedNotificationobject:nil];

//Reachability实例调用startNotifier方法启动网络状态监测

[reach startNotifier];

//收到通知调用的方法

-(void)reachabilityChanged:(NSNotification*)notification{

Reachability*reach=[notificationobject];

//判断网络状态

if(![reach isReachable]){

NSLog(@"网络连接不可用");

}else{

if([reach currentReachabilityStatus]==ReachableViaWiFi){

NSLog(@"正在使用WiFi");

}elseif([reach currentReachabilityStatus]==ReachableViaWWAN){

NSLog(@"正在使用移动数据");

}

}

}

通过通知的方式使用Reachability是在程序中经常使用的,Reachability可以在用户的网络状态发生改变时,及时给出通知提醒,防止数据流量的快速流失,在实际的项目应用中是十分常见的。

你可能感兴趣的:(iOS网络状态监测下Reachability的使用)