iOS開發網路篇—監測網路狀態(使用Reachability)

來源:互聯網
上載者:User

標籤:

一、說明

在網路應用中,需要對使用者裝置的網路狀態進行即時監控,有兩個目的:

(1)讓使用者瞭解自己的網路狀態,防止一些誤會(比如怪應用無能)

(2)根據使用者的網路狀態進行智能處理,節省使用者流量,提高使用者體驗

  WIFI\3G網路:自動下載高清圖片

  低速網路:只下載縮圖

  沒有網路:只顯示離線的快取資料

 

蘋果官方提供了一個叫Reachability的樣本程式,便於開發人員檢測網路狀態

https://developer.apple.com/library/ios/samplecode/Reachability/Reachability.zip

二、監測網路狀態

Reachability的使用步驟

添加架構SystemConfiguration.framework

 

添加原始碼

 

包含標頭檔

#import "Reachability.h"

程式碼範例:

 1 #import "YYViewController.h" 2 #import "Reachability.h" 3  4 @interface YYViewController () 5 @property (nonatomic, strong) Reachability *conn; 6 @end 7  8 @implementation YYViewController 9 10 - (void)viewDidLoad11 {12     [super viewDidLoad];13     14     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkStateChange) name:kReachabilityChangedNotification object:nil];15     self.conn = [Reachability reachabilityForInternetConnection];16     [self.conn startNotifier];17 }18 19 - (void)dealloc20 {21     [self.conn stopNotifier];22     [[NSNotificationCenter defaultCenter] removeObserver:self];23 }24 25 - (void)networkStateChange26 {27     [self checkNetworkState];28 }29 30 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event31 {32 33 }34 35 - (void)checkNetworkState36 {37     // 1.檢測wifi狀態38     Reachability *wifi = [Reachability reachabilityForLocalWiFi];39     40     // 2.檢測手機是否能上網路(WIFI\3G\2.5G)41     Reachability *conn = [Reachability reachabilityForInternetConnection];42     43     // 3.判斷網路狀態44     if ([wifi currentReachabilityStatus] != NotReachable) { // 有wifi45         NSLog(@"有wifi");46         47     } else if ([conn currentReachabilityStatus] != NotReachable) { // 沒有使用wifi, 使用手機內建網路進行上網48         NSLog(@"使用手機內建網路進行上網");49         50     } else { // 沒有網路51         52         NSLog(@"沒有網路");53     }54 }55 @end56 57 // 用WIFI58 // [wifi currentReachabilityStatus] != NotReachable59 // [conn currentReachabilityStatus] != NotReachable60 61 // 沒有用WIFI, 只用了行動電話通訊62 // [wifi currentReachabilityStatus] == NotReachable63 // [conn currentReachabilityStatus] != NotReachable64 65 // 沒有網路66 // [wifi currentReachabilityStatus] == NotReachable67 // [conn currentReachabilityStatus] == NotReachable

iOS開發網路篇—監測網路狀態(使用Reachability)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.