zoukankan      html  css  js  c++  java
  • iOS中判断网络是否联网

    #import "AppDelegate.h"
    
    #import "ViewController.h"
    #import "Reachability.h"
    
    
    @interface AppDelegate (){
    }
    @property (nonatomic,retain)Reachability *res;
    
    @end
    
    @implementation AppDelegate
    
    - (void)dealloc
    {
        [_window release];
        [_res release];
        [_viewController release];
        [super dealloc];
    }
    
    -(void)change:(NSNotificationCenter *)notify{//当网络发生变化的时候,都会触发这个事件
        NSLog(@"%@",notify);
    }
    
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        
    
    //添加网络变化的通知
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(change:) name:kReachabilityChangedNotification object:nil];
        self.res=[Reachability reachabilityWithHostName:@"http://www.baidu.com"];
        [self.res startNotifier];//开始监听网络请求的变化
        
        
        self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
        // Override point for customization after application launch.
        self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
        self.window.rootViewController = self.viewController;
        [self.window makeKeyAndVisible];
        return YES;
    }
    、-(void)viewWillAppear:(BOOL)animated{
        [super viewWillAppear:animated];
        if([Reachability reachabilityForLocalWiFi].currentReachabilityStatus==NotReachable&&[[Reachability reachabilityForInternetConnection] currentReachabilityStatus]==NotReachable){
            NSLog(@" not  work");
        }
     
    }
    
    -(void)PdNetwork{
        Reachability *r=[Reachability reachabilityWithHostName:@"http://www.baidu.com"];
        switch ([r currentReachabilityStatus]) {
            case NotReachable:
                NSLog(@"not work");
                break;
            case ReachableViaWiFi:
                NSLog(@"wifi");
                break;
            case ReachableViaWWAN:{
                NSLog(@"wan");
            }
                break;
            default:
                break;
        }
    }
  • 相关阅读:
    sublime text 3 常用快捷键
    PHP注释-----PHPDOC
    正则表达式
    JavaScript中常用的函数
    网站特效离不开脚本,javascript是最常用的脚本语言,我们归纳一下常用的基础函数和语法:
    ubuntu16.04LTS下安装zookeeper
    HiveQL详解
    ubuntu16.04LTS下安装hive-2.1.0
    Hadoop环境 IDE配置(在eclipse中安装hadoop-eclipse-plugin-2.7.3.jar插件)
    Hadoop 数据节点DataNode异常
  • 原文地址:https://www.cnblogs.com/gcb999/p/3175524.html
Copyright © 2011-2022 走看看