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

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];//给通知中心一个通知,有变化通知我

ios-ASIHTTPRequest的Reachability可以监听网络,网络出现状况来不同的处理
-(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可以监听网络,网络出现状况来不同的处理

 

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

 

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

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

上一篇:Android之Android apk动态加载机制的研究


下一篇:ios学习记录 day31 UI 9 多视图切换 导航控制器