当前位置: 首页 > 工具软件 > Reachability > 使用案例 >

Reachability 网络监测

杜绍元
2023-12-01

import “Reachability.h”下载第三方包 引入头文件

初始化 reachabilty
self.reachability = [Reachability reachabilityForInternetConnection];


** [[NSNotificationCenter defaultCenter ]addObserver:self selector:@selector(change) name:kReachabilityChangedNotification object:nil ];
[self.reachability startNotifier];开启 网络监测
[self change];*方法调用*
利用通知中心用来监听我们的网络监测
reachabilty
有三个参数
1,NotReachable 没有网络
2,ReachableViaWiFi wifi连接
3,ReachableViaWWAN 3G/4G连接

最后调用 自我销毁方法 dealloc 把self.reachability 关闭

[[NSNotificationCenter defaultCenter]removeObserver:self];
把通知中心方法
 类似资料: