博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS中使用 Reachability 检测网络
阅读量:6156 次
发布时间:2019-06-21

本文共 6087 字,大约阅读时间需要 20 分钟。

如果你想在iOS程序中提供一仅在wifi网络下使用(Reeder),或者在没有网络状态下提供离线模式(Evernote)。那么你会使用到Reachability来实现网络检测。

 

写本文的目的

  • 了解Reachability都能做什么
  • 检测3中网络环境
    • 2G/3G
    • wifi
    • 无网络
  • 如何使用通知
    • 单个controller
    • 多个controller
  • 简单的功能:
    • 仅在wifi下使用

Reachability简介

Reachablity 是一个iOS下检测,iOS设备网络环境用的库。

  • 监视目标网络是否可用
  • 监视当前网络的连接方式
  • 监测连接方式的变更

苹果官方提供的Doc

 

Github上的文档

 

安装

  1. 创建 工程(network是我创建的demo工程,附件中可以下载到)
  2.  使用
  3. 在项目中添加 SystemConfiguration.framework 库

由于Reachability非常常用。直接将其加入到Supporting Files/networ-Prefix.pch中:

 

C代码  
  1. #import <Reachability/Reachability.h>  
#import 

 

 如果你还不知道cocoaspod是什么,看这里:

 

使用

stackoverflow上有一篇回答,很好的解释了reachability的用法

  • 一般情况一个Reachability实例就ok了。
  • 一个Controller只需要一个Reachability

Block方式使用

 

C代码  
  1. - (void)viewDidLoad  
  2. {  
  3.     [super viewDidLoad];  
  4.      DLog(@"开启 www.apple.com 的网络检测");  
  5.      Reachability* reach = [Reachability reachabilityWithHostname:@"www.apple.com"];  
  6.      DLog(@"-- current status: %@", reach.currentReachabilityString);  
  7.       
  8.      // start the notifier which will cause the reachability object to retain itself!  
  9.       
  10.      [[NSNotificationCenter defaultCenter] addObserver:self  
  11.                                                         selector:@selector(reachabilityChanged:)  
  12.                                                              name:kReachabilityChangedNotification  
  13.                                                           object:nil];  
  14.       
  15.      reach.reachableBlock = ^(Reachability * reachability)  
  16.     {  
  17.         dispatch_async(dispatch_get_main_queue(), ^{  
  18.             self.blockLabel.text = @"网络可用";  
  19.                self.blockLabel.backgroundColor = [UIColor greenColor];  
  20.         });  
  21.     };  
  22.      
  23.     reach.unreachableBlock = ^(Reachability * reachability)  
  24.     {  
  25.         dispatch_async(dispatch_get_main_queue(), ^{  
  26.             self.blockLabel.text = @"网络不可用";  
  27.                self.blockLabel.backgroundColor = [UIColor redColor];  
  28.         });  
  29.     };  
  30.       
  31.      [reach startNotifier];  
  32. }  
  33.    
- (void)viewDidLoad{    [super viewDidLoad];     DLog(@"开启 www.apple.com 的网络检测");     Reachability* reach = [Reachability reachabilityWithHostname:@"www.apple.com"];     DLog(@"-- current status: %@", reach.currentReachabilityString);         // start the notifier which will cause the reachability object to retain itself!         [[NSNotificationCenter defaultCenter] addObserver:self                                                        selector:@selector(reachabilityChanged:)                                                             name:kReachabilityChangedNotification                                                          object:nil];         reach.reachableBlock = ^(Reachability * reachability)    {        dispatch_async(dispatch_get_main_queue(), ^{            self.blockLabel.text = @"网络可用";               self.blockLabel.backgroundColor = [UIColor greenColor];        });    };       reach.unreachableBlock = ^(Reachability * reachability)    {        dispatch_async(dispatch_get_main_queue(), ^{            self.blockLabel.text = @"网络不可用";               self.blockLabel.backgroundColor = [UIColor redColor];        });    };         [reach startNotifier];}

 

 

使用notification的方式

 

C代码  
  1. - (void)viewDidLoad  
  2. {  
  3.     [super viewDidLoad];  
  4.      DLog(@"开启 www.apple.com 的网络检测");  
  5.      Reachability* reach = [Reachability reachabilityWithHostname:@"www.apple.com"];  
  6.      DLog(@"-- current status: %@", reach.currentReachabilityString);  
  7.       
  8.      // start the notifier which will cause the reachability object to retain itself!  
  9.       
  10.      [[NSNotificationCenter defaultCenter] addObserver:self  
  11.                                                         selector:@selector(reachabilityChanged:)  
  12.                                                              name:kReachabilityChangedNotification  
  13.                                                           object:nil];  
  14.      [reach startNotifier];  
  15. }  
  16.   
  17. - (void) reachabilityChanged: (NSNotification*)note {  
  18.      Reachability * reach = [note object];  
  19.      
  20.     if(![reach isReachable])  
  21.     {  
  22.         self.notificationLabel.text = @"网络不可用";  
  23.           self.notificationLabel.backgroundColor = [UIColor redColor];  
  24.           self.wifiOnlyLabel.backgroundColor = [UIColor redColor];  
  25.           self.wwanOnlyLabel.backgroundColor = [UIColor redColor];  
  26.           return;  
  27.     }  
  28.          
  29.      self.notificationLabel.text = @"网络可用";  
  30.      self.notificationLabel.backgroundColor = [UIColor greenColor];  
  31.       
  32.      if (reach.isReachableViaWiFi) {  
  33.           self.wifiOnlyLabel.backgroundColor = [UIColor greenColor];  
  34.           self.wifiOnlyLabel.text = @"当前通过wifi连接";  
  35.      } else {  
  36.           self.wifiOnlyLabel.backgroundColor = [UIColor redColor];  
  37.           self.wifiOnlyLabel.text = @"wifi未开启,不能用";  
  38.      }  
  39.       
  40.      if (reach.isReachableViaWWAN) {  
  41.           self.wwanOnlyLabel.backgroundColor = [UIColor greenColor];  
  42.           self.wwanOnlyLabel.text = @"当前通过2g or 3g连接";  
  43.      } else {  
  44.           self.wwanOnlyLabel.backgroundColor = [UIColor redColor];  
  45.           self.wwanOnlyLabel.text = @"2g or 3g网络未使用";  
  46.      }  
  47. }  
- (void)viewDidLoad{    [super viewDidLoad];     DLog(@"开启 www.apple.com 的网络检测");     Reachability* reach = [Reachability reachabilityWithHostname:@"www.apple.com"];     DLog(@"-- current status: %@", reach.currentReachabilityString);         // start the notifier which will cause the reachability object to retain itself!         [[NSNotificationCenter defaultCenter] addObserver:self                                                        selector:@selector(reachabilityChanged:)                                                             name:kReachabilityChangedNotification                                                          object:nil];     [reach startNotifier];}- (void) reachabilityChanged: (NSNotification*)note {     Reachability * reach = [note object];       if(![reach isReachable])    {        self.notificationLabel.text = @"网络不可用";          self.notificationLabel.backgroundColor = [UIColor redColor];          self.wifiOnlyLabel.backgroundColor = [UIColor redColor];          self.wwanOnlyLabel.backgroundColor = [UIColor redColor];          return;    }            self.notificationLabel.text = @"网络可用";     self.notificationLabel.backgroundColor = [UIColor greenColor];         if (reach.isReachableViaWiFi) {          self.wifiOnlyLabel.backgroundColor = [UIColor greenColor];          self.wifiOnlyLabel.text = @"当前通过wifi连接";     } else {          self.wifiOnlyLabel.backgroundColor = [UIColor redColor];          self.wifiOnlyLabel.text = @"wifi未开启,不能用";     }         if (reach.isReachableViaWWAN) {          self.wwanOnlyLabel.backgroundColor = [UIColor greenColor];          self.wwanOnlyLabel.text = @"当前通过2g or 3g连接";     } else {          self.wwanOnlyLabel.backgroundColor = [UIColor redColor];          self.wwanOnlyLabel.text = @"2g or 3g网络未使用";     }}

 

 

附件demo说明

开启wifi状态

 关闭wifi的状态

 

 

 

遗留问题

  1. 如何在多个controller之前共用一个Reachability(附件demo中是一个controller一个Reachability实例)
  2. 应该在什么使用停止Reachability的检测.

转载于:https://www.cnblogs.com/lovewx/p/4076367.html

你可能感兴趣的文章
Docker镜像与容器命令
查看>>
批量删除oracle中以相同类型字母开头的表
查看>>
Java基础学习总结(4)——对象转型
查看>>
BZOJ3239Discrete Logging——BSGS
查看>>
SpringMVC权限管理
查看>>
spring 整合 redis 配置
查看>>
cacti分组发飞信模块开发
查看>>
浅析LUA中游戏脚本语言之魔兽世界
查看>>
飞翔的秘密
查看>>
Red Hat 安装源包出错 Package xxx.rpm is not signed
查看>>
编译安装mysql-5.6.16.tar.gz
查看>>
活在当下
查看>>
每天进步一点----- MediaPlayer
查看>>
PowerDesigner中CDM和PDM如何定义外键关系
查看>>
跨域-学习笔记
查看>>
the assignment of reading paper
查看>>
android apk 逆向中常用工具一览
查看>>
MyEclipse 报错 Errors running builder 'JavaScript Validator' on project......
查看>>
Skip List——跳表,一个高效的索引技术
查看>>
Yii2单元测试初探
查看>>