iOS判断网络代码

今天给大家分享oc如何判断网络,首先大家先去下载这个已经封装的好的类,到时咱们就用它来判断网络,很简单哦,这是链接http://pan.baidu.com/s/1o6vAUam

下载好了之后解压,然后拖入到你的项目之中,然后再AppDelegate.m中导入头文件

#import "Reachability.h"

之后在这个方法中写入代码

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {


    

Reachability *reachability = [Reachability reachabilityWithHostName:@"www.apple.com"];

    switch ([reachability currentReachabilityStatus]) {

        case NotReachable:

        {

            UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"当前没有网络连接哦!" message:nil delegate:self cancelButtonTitle:@"确定" otherButtonTitles: nil];

            

            [alert show];

            [alert release];

        }

            break;

        case ReachableViaWiFi:

            NSLog(@"wifi连接");

            break;

        case ReachableViaWWAN:

            NSLog(@"蜂窝数据");

            break;

        default:

            break;

    }


    return YES;

}


当然这只是判断网络的代码,有了这段代码在,你的App就会判断个网络了哦,谢谢大家!

你可能感兴趣的:(iOS判断网络代码,iOS网络判断)