在實際開發過程中經常需要判斷應用當前的網路狀態(wifi,4g,無網路),這裡需要用到乙個第三方框架afnetworking
2, 引用標頭檔案,使用cocoapod需要用#import <
#import
"afnetworking/afnetworking.h"
3,除錯**
#pragma mark
網路狀態監測 -(
void
)checknetworkstatus
}];
//開始監控
[operationmanager.
reachabilitymanager
startmonitoring];
} -(void
)alert:(
nsstring
*)str
執行如下
iOS 判斷當前網路狀態
1.如果只判斷當前是否是無網的狀態 if reachability reachabilityforlocalwifi currentreachabilitystatus notreachable reachability reachabilityforinternetconnection curre...
iOS 判斷當前網路狀態的三種方法
reachability 在 reachability標頭檔案中我們可以看到無網路,wifi和蜂窩網三個網路狀態的列舉值,如下 typedef enum nsinteger networkstatus 1 獲取網路狀態 在ios 7之前,當使用者網路為蜂窩網路時,是沒法判斷3g 4g等網路型別的,i...
iOS判斷當前是否有網路
在對應的.h檔案中加入宣告 cpp view plain copy print?bool connectedtonetwork 如果方法前面加 就相當於類的靜態方法,這裡要注意一下 在.m中加入定義 cpp view plain copy print?bool connectedtonetwork ...