ios-ASIHTTPRequest的Reachability可以监听网络,网络出现状况来不同的处理

 _reacheability= [Reachability reachabilityForInternetConnection];//我们可以用这个类来监听网络,这个不同的网络用不同的静态方法初始化
 [_reacheability startNotifier];//开始监测网络
 NetworkStatus staus=[_reacheability currentReachabilityStatus];//获取当前网络状态
 [self networkstaus:staus];
 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(networkChange:) name:kReachabilityChangedNotification object:nil];//给通知中心一个通知,有变化通知我

-(void)networkChange:(NSNotification *)notices{
    NetworkStatus staus=[_reacheability currentReachabilityStatus];//获取当前网络状态
    [self networkstaus:staus];
}
-(void)networkstaus:(NetworkStatus)status{
    if (status==kNotReachable) {
        NSLog(@"没有网络");
    }else if (status==kReachableViaWiFi) {
        NSLog(@"kReachableViaWiFi");
    }else if (status==kReachableViaWWAN) {
        NSLog(@"kReachableViaWWAN");
    }
}
//2个调用的方法

 

 

 

ios-ASIHTTPRequest的Reachability可以监听网络,网络出现状况来不同的处理,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。