iOS 檢測網(wǎng)絡(luò)狀態(tài)

導(dǎo)入 Reachability3.0 第三方SDK

導(dǎo)入頭文件

#import "Reachability.h"

創(chuàng)建三個按鈕

// 按鈕1
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[btn setTitle:@"檢測站點(diǎn)是否可連接" forState:UIControlStateNormal];
[btn addTarget:self action:@selector(didClick) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
    
// 按鈕2
UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn1.frame = CGRectMake(100, 300, 300, 30);
[btn1 setTitle:@"檢測234G是否可連接" forState:UIControlStateNormal];
[btn1 addTarget:self action:@selector(didClick234G) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn1];
    
// 按鈕3
UIButton *btn3 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn3.frame = CGRectMake(100, 400, 300, 30);
[btn3 setTitle:@"檢測wifi是否可連接" forState:UIControlStateNormal];
[btn3 addTarget:self action:@selector(didClickwifi) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn3];

第一個按鈕的點(diǎn)擊事件 --- 檢測站點(diǎn)是否可連接

// 檢測站點(diǎn)是否可連接
-(void)didClick
{
    // 檢測站點(diǎn)奔缠,通過 Reachability 檢測
    Reachability *reach = [Reachability reachabilityWithHostName:@"https://www.taobao.com"];
    
    // 開始檢測
    // 檢測reach當(dāng)前網(wǎng)絡(luò)狀態(tài)
    switch ([reach currentReachabilityStatus]) {
        case NotReachable:{  // 無網(wǎng)絡(luò)狀態(tài)
            NSLog(@"該站點(diǎn)無法連接。");
            
            // 提示框
            UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
            UIAlertAction *action = [UIAlertAction actionWithTitle:@"該站點(diǎn)無法連接" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                
            }];
            [alert addAction:action];
            [self presentViewController:alert animated:YES completion:^{
                
            }];
            
        }
            break;
        case ReachableViaWiFi:{
            NSLog(@"通過wifi連接站點(diǎn)");
            
            // 提示框
            UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
            UIAlertAction *action = [UIAlertAction actionWithTitle:@"通過wifi連接站點(diǎn)" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                
            }];
            [alert addAction:action];
            [self presentViewController:alert animated:YES completion:^{
                
            }];
            
        }
            break;
        case ReachableViaWWAN:{
            NSLog(@"通過234G連接站點(diǎn)");
            
            // 提示框
            UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
            UIAlertAction *action = [UIAlertAction actionWithTitle:@"通過234G連接站點(diǎn)" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                
            }];
            [alert addAction:action];
            [self presentViewController:alert animated:YES completion:^{
                
            }];
            
        }
            break;
            
        default:
            break;
    }
}



第二個按鈕的點(diǎn)擊事件 --- 檢測234G是否可連接

// 檢測234G是否可連接
-(void)didClick234G
{
    Reachability *reach = [Reachability reachabilityForInternetConnection];
    
    // 判斷 234G 的狀態(tài)
    if ([reach currentReachabilityStatus] != NotReachable) {
        
        NSLog(@"234G已連接");
        
        // 提示框
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"234G已連接" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        [alert addAction:action];
        [self presentViewController:alert animated:YES completion:^{
            
        }];
        
    }else{
    
        NSLog(@"234G已斷開");
        
        // 提示框
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"234G已斷開" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        [alert addAction:action];
        [self presentViewController:alert animated:YES completion:^{
            
        }];
    }
}


第三個按鈕的點(diǎn)擊事件 -- 檢測wifi是否可連接

// 檢測wifi是否可連接
-(void)didClickwifi
{
    Reachability *reach = [Reachability reachabilityForLocalWiFi];
    
    // 判斷
    if ([reach currentReachabilityStatus] != NotReachable) {
        
        NSLog(@"wifi已連接");
        
        // 提示框
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"wifi已連接" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        [alert addAction:action];
        [self presentViewController:alert animated:YES completion:^{
            
        }];
        
    }else{
        
        NSLog(@"wifi已斷開");
        
        // 提示框
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"wifi已斷開" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        [alert addAction:action];
        [self presentViewController:alert animated:YES completion:^{
            
        }];
        
        
    }
    
}


wifi狀態(tài)發(fā)生改變時彈出提示框
在 AppDelegate.h 中

// 定義成員變量
{
    Reachability *_reach;
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    // 注冊通知,檢測wifi狀態(tài)的改變
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(TongZhi) name:kReachabilityChangedNotification object:nil];
    
    // 初始化rearch
    _reach = [Reachability reachabilityForLocalWiFi];
    
    // 開始監(jiān)聽
    [_reach startNotifier];
    
    return YES;
}



點(diǎn)擊事件

// 注冊通知方法
-(void)TongZhi
{
    if ([_reach currentReachabilityStatus] == NotReachable) {
        
        NSLog(@"wifi已經(jīng)斷開");
        
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"已斷開" message:@"" preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        [alert addAction:action];
        [self.window.rootViewController presentViewController:alert animated:YES completion:^{
            
        }];
        
    }else{
    
        NSLog(@"wifi已連接");
        
        UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"已連接" message:@"" preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        [alert addAction:action];
        [self.window.rootViewController presentViewController:alert animated:YES completion:^{
            
        }];
    }
        
}



?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末缆巧,一起剝皮案震驚了整個濱河市蠢甲,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖恰聘,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件戳气,死亡現(xiàn)場離奇詭異链患,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)瓶您,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進(jìn)店門麻捻,熙熙樓的掌柜王于貴愁眉苦臉地迎上來纲仍,“玉大人,你說我怎么就攤上這事贸毕≈5” “怎么了?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵明棍,是天一觀的道長乡革。 經(jīng)常有香客問我,道長摊腋,這世上最難降的妖魔是什么沸版? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮兴蒸,結(jié)果婚禮上视粮,老公的妹妹穿的比我還像新娘。我一直安慰自己橙凳,他們只是感情好蕾殴,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著岛啸,像睡著了一般钓觉。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上坚踩,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天荡灾,我揣著相機(jī)與錄音,去河邊找鬼堕虹。 笑死卧晓,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的赴捞。 我是一名探鬼主播逼裆,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼赦政!你這毒婦竟也來了胜宇?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤恢着,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后从诲,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體系洛,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年恩够,在試婚紗的時候發(fā)現(xiàn)自己被綠了蜂桶。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片屎飘。...
    茶點(diǎn)故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡褂萧,死狀恐怖导犹,靈堂內(nèi)的尸體忽然破棺而出磕昼,到底是詐尸還是另有隱情票从,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站吩翻,受9級特大地震影響铣减,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜劣针,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一从祝、第九天 我趴在偏房一處隱蔽的房頂上張望擎浴。 院中可真熱鬧贮预,春花似錦、人聲如沸唤冈。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽贮缅。三九已至,卻和暖如春桂肌,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背永淌。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工崎场, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人遂蛀。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓谭跨,卻偏偏與公主長得像,于是被迫代替她去往敵國和親李滴。 傳聞我的和親對象是個殘疾皇子螃宙,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內(nèi)容