码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发之监听网络连接,改变,断开

时间:2015-01-12 22:31:13      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:ios   objective-c   reachability   

做iOS开发时,我们需要监控/监听网络状况,苹果提供了Reachability.h, Reachability.m。

导入Reachability.h

我们可以在 MainViewController的viewDidLoad方法内部写上:

[self checkReachability];

之后,具体方法如下

#pragma mark
#pragma mark Reachability Methods
#pragma mark
- (void)checkReachability
{
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
    self.reachability = [Reachability reachabilityForInternetConnection];
    [self.reachability startNotifier];
    [self updateInterfaceWithReachability:self.reachability];
}

/*!
 * Called by Reachability whenever status changes.
 */
- (void) reachabilityChanged:(NSNotification *)note
{
    Reachability* curReach = [note object];
    NSParameterAssert([curReach isKindOfClass:[Reachability class]]);
    [self updateInterfaceWithReachability:curReach];
}

- (void)updateInterfaceWithReachability:(Reachability *)reachability
{
    NetworkStatus status = [reachability currentReachabilityStatus];
    AppDelegate *appDelegate = ((AppDelegate *) [[UIApplication sharedApplication] delegate]);

    if(status == NotReachable)
    {
        //No internet
        NSLog(@"No Internet");
        appDelegate.isNetworkReachable = NO;
        [_reachabilityImage setImage:[UIImage imageNamed:@"stop-32.png"]];
    }
    else if (status == ReachableViaWiFi)
    {
        //WiFi
        NSLog(@"Reachable WIFI");
        appDelegate.isNetworkReachable = YES;
        [_reachabilityImage setImage:[UIImage imageNamed:@"Airport.png"]];
    }
    else if (status == ReachableViaWWAN)
    {
        //3G
        NSLog(@"Reachable 3G");
        appDelegate.isNetworkReachable = YES;
        [_reachabilityImage setImage:[UIImage imageNamed:@"WWAN5.png"]];
    }
}


iOS开发之监听网络连接,改变,断开

标签:ios   objective-c   reachability   

原文地址:http://blog.csdn.net/tinylight/article/details/42651879

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!