在整个应用程序中运行Internet连接检查

时间:2013-03-03 00:57:53

标签: iphone ios objective-c xcode

以下方法可以很好地检查用户是否有互联网连接。我想检查整个应用程序中的互联网连接,我想知道是否有某个地方我可以将它放在我的App Delegate中,它将从每个视图控制器调用。

有办法做到这一点吗?如果我把它放在我的applicationDidFinishLaunching中似乎没有正常工作。任何建议都会很棒!谢谢!

NSURL *scriptUrl = [NSURL URLWithString:@"http://www.google.com/m"];
NSData *data = [NSData dataWithContentsOfURL:scriptUrl];
if (data) {
    NSLog(@"Device is connected to the internet");
}
else {
    NSLog(@"Device is not connected to the internet");
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No Internet Connectivity" 
    message:@"You must have an internet connection" delegate:self cancelButtonTitle:@"OK" 
    otherButtonTitles:nil, nil];
    [alert show];
    return;
}

3 个答案:

答案 0 :(得分:4)

如果您希望将此特定方法放在可以从整个应用程序访问和调用的位置,那么这只是一个设计决策。有很多方法可以实现这一目标。

我喜欢在实现全局方法时使用单例范例。约翰华兹华斯在这篇精彩简洁的博文中介绍了这一点:

http://www.johnwordsworth.com/2010/04/iphone-code-snippet-the-singleton-pattern/

以下是一小段代码:

  

InternetConnectionChecker.h

#import <Foundation/Foundation.h>

@interface InternetConnectionChecker : NSObject

// Accessor for singelton instance of internet connection checker.
+ (InternetConnectionChecker *)sharedInternetConnectionChecker;

// Check to see whether we have a connection to the internet. Returns YES or NO.
- (BOOL)connected;

@end
  

InternetConnectionChecker.m

#import "InternetConnectionChecker.h"

@implementation InternetConnectionChecker

// Accessor for singelton instance of internet connection checker.
+ (InternetConnectionChecker *)sharedInternetConnectionChecker
{
    static InternetConnectionChecker *sharedInternetConnectionChecker;
    @synchronized(self)
    {
        if (!sharedInternetConnectionChecker) {
            sharedInternetConnectionChecker = [[InternetConnectionChecker alloc] init];
        }
    }
    return sharedInternetConnectionChecker;
}

// Check to see whether we have a connection to the internet. Returns YES or NO.
- (BOOL)connected
{
    NSURL *scriptUrl = [NSURL URLWithString:@"http://www.google.com/m"];
    NSData *data = [NSData dataWithContentsOfURL:scriptUrl];
    if (data) {
        NSLog(@"Device is connected to the internet");
        return TRUE;
    }
    else {
        NSLog(@"Device is not connected to the internet");
        return FALSE;
    }
}

@end

在我的示例中,我修改了您的方法以返回true / false,因此您可以在UI中处理调整方法的结果,但如果您满意,可以继续显示UIAlertView。

然后您将按以下方式使用单身:

InternetConnectionChecker *checker = [InternetConnectionChecker sharedInternetConnectionChecker];
BOOL connected = [checker connected];

答案 1 :(得分:1)

当然有更复杂的方法,但最简单的方法(以及我使用的方式)是简单地创建一个“CheckNetwork”类,将您的方法作为返回bool的类方法,即:< / p>

+ (BOOL) checkConnection{
   yourMethodDetails;
}

然后只需#import“CheckNetwork.h”进入项目中的任何文件并调用

if([CheckNetwork checkConnection]){
    whatever you want to do here;
}

答案 2 :(得分:0)

虽然Singleton类和Static方法是一种方法,但您也可以在.h文件中实现静态内联方法,而不是.m文件

此外,作为一种替代方法,使用NSURL和google.com检查互联网连接并不是一个好习惯。

由于,

  • 这不是一个简单的ping操作
  • 下载可能消耗时间的整个页面
  • OS提供的方式更加激进和恰当。

您正在使用特定的网站,然后使用该网站进行连接是最佳做法,我认为。通过this Answer

查看 Jon Skeet

我建议使用Apple的 Reachability 框架。

或者如果您需要更紧凑的单功能版本,您也可以使用此功能摘自Reachabilty我自己

+ (BOOL) reachabilityForInternetConnection;
{
    struct sockaddr_in zeroAddress;
    bzero(&zeroAddress, sizeof(zeroAddress));
    zeroAddress.sin_len = sizeof(zeroAddress);
    zeroAddress.sin_family = AF_INET;

    SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithAddress(kCFAllocatorDefault, (const struct sockaddr*)&zeroAddress);

    SCNetworkReachabilityFlags flags;
    if (SCNetworkReachabilityGetFlags(reachability, &flags))
    {
        return (flags & kSCNetworkReachabilityFlagsConnectionRequired);
    }
    return NO;
}