• 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;
        }
    }
  • 相关阅读:
    mysql常用语句、命令(增删改查功能)
    MySQL 入门知识点
    windows下安装mysql解压版
    第4章 HDFS操作
    第3章 Hadoop 2.x分布式集群搭建
    第2章 CentOS7集群环境配置
    第1章 VMware中安装CentOS7
    windows10激活方法
    linux系统下操作mysql数据库常见命令
    xampp搭建开源项目iwebshop后,服务器重启后再启动xampp显示组件都启动ok,但是实际启动失败解决办法
  • 原文地址:https://www.cnblogs.com/gcb999/p/3175524.html
Copyright © 2020-2023  润新知