01
//判断当前的网络是3g还是wifi
02
-(NSString*)GetCurrntNet
03
{
04
NSString* result;
05
Reachability *r = [ReachabilityreachabilityWithHostName:@
"www.apple.com"
];
06
switch
([r currentReachabilityStatus]) {
07
caseNotReachable:
// 没有网络连接
08
result=nil;
09
break
;
10
caseReachableViaWWAN:
// 使用3G网络
11
result=@
"3g"
12
13
caseReachableViaWiFi:
// 使用WiFi网络
14
"wifi"
15
16
}
17
return
result;
18
posted on 2013-08-02 10:47 几百人有爱 阅读(177) 评论(0) 编辑 收藏 举报