How to get change in network connection notification from iOS Reachability Class?

后端 未结 5 1985
没有蜡笔的小新
没有蜡笔的小新 2020-12-09 05:24

Hi I want to capture whenever user gets a network connectivity in my application for this I have added apples Reachability class and below is the snippet I am using in my ap

相关标签:
5条回答
  • 2020-12-09 06:02

    Simplest of ways:

    reach = [Reachability reachabilityWithHostName:@"www.google.com"];
     reach.reachableBlock = ^(Reachability *reach){
        NSLog(@"Reachable");
    };
    
    reach.unreachableBlock = ^(Reachability *reach){
        NSLog(@"Unreachable");
    };
    [reach startNotifier];
    

    Everytime there is a change in network,respective blocks will be called.

    0 讨论(0)
  • 2020-12-09 06:14

    You can use this wrapper on reachability to get block based callback whenever there is a change in connectivity status.

    GitHub: UHBConnectivityManager

    If you are using cocoapods.

    pod 'UHBConnectivityManager'
    
    0 讨论(0)
  • 2020-12-09 06:22

    I use a variable in appdelegate to store the current network status as a bool

    @property (nonatomic, assign) BOOL hasInet;
    

    .m

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        [self setUpRechability];
    }
    
    
    -(void)setUpRechability
    {
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNetworkChange:) name:kReachabilityChangedNotification object:nil];
    
        reachability = [Reachability reachabilityForInternetConnection];
        [reachability startNotifier];
    
        NetworkStatus remoteHostStatus = [reachability currentReachabilityStatus];
    
        if          (remoteHostStatus == NotReachable)      {NSLog(@"no");      self.hasInet-=NO;   }
        else if     (remoteHostStatus == ReachableViaWiFi)  {NSLog(@"wifi");    self.hasInet-=YES;  }
        else if     (remoteHostStatus == ReachableViaWWAN)  {NSLog(@"cell");    self.hasInet-=YES;  }
    
    }
    
    - (void) handleNetworkChange:(NSNotification *)notice
    {
        NetworkStatus remoteHostStatus = [reachability currentReachabilityStatus];
    
        if          (remoteHostStatus == NotReachable)      {NSLog(@"no");      self.hasInet-=NO;   }
        else if     (remoteHostStatus == ReachableViaWiFi)  {NSLog(@"wifi");    self.hasInet-=YES;  }
        else if     (remoteHostStatus == ReachableViaWWAN)  {NSLog(@"cell");    self.hasInet-=YES;  }
    
    //    if (self.hasInet) {
    //        UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"Net avail" message:@"" delegate:self cancelButtonTitle:OK_EN otherButtonTitles:nil, nil];
    //        [alert show];
    //    }
    }
    
    0 讨论(0)
  • 2020-12-09 06:22

    Maybe you should add the observer before startnotifier

    [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(handleNetworkChange:) name: kReachabilityChangedNotification object: nil];
    reachability = [Reachability reachabilityForInternetConnection];
    [reachability startNotifier];
    
    0 讨论(0)
  • 2020-12-09 06:27

    Make reachability as your property instead of local variable. It would work.

    0 讨论(0)
提交回复
热议问题