当前位置:编程学习 > wap >>

iPhone开发 判断当前的网络是3g还是wifi

1.添加framework:
将SystemConfiguration.framework 添加进工程。

2.下载/2012/0302/20120302102046711.zip
 

复制里面的Reachability.h和Reachability.m到项目中

 

 

调用的代码:

//判断当前的网络是3g还是wifi

-(NSString*)GetCurrntNet

{

    NSString* result;

    Reachability *r = [ReachabilityreachabilityWithHostName:@"www.apple.com"];    switch ([r currentReachabilityStatus]) {

 

        caseNotReachable:// 没有网络连接

            result=nil;

            break;

        caseReachableViaWWAN:// 使用3G网络

 
            result=@"3g";
 
            break;
 
        caseReachableViaWiFi:// 使用WiFi网络
 
            result=@"wifi";
 
            break;    }

    return result;

}

 

摘自 凡娃软件
补充:移动开发 , IOS ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,