判斷WiFi是否連接可以使用Reachability進行判斷,那麼WiFi是否打開應該怎麼判斷呢?
下面是兩種完全基於不同思路的方法:
方法一:
使用SystemConfiguration.framework 庫進行判斷
#import <ifaddrs.h> #import <net/if.h> #import <SystemConfiguration/CaptiveNetwork.h> - (BOOL) isWiFiEnabled { NSCountedSet * cset = [NSCountedSet new]; struct ifaddrs *interfaces; if( ! getifaddrs(&interfaces) ) { for( struct ifaddrs *interface = interfaces; interface; interface = interface->ifa_next) { if ( (interface->ifa_flags & IFF_UP) == IFF_UP ) { [cset addObject:[NSString stringWithUTF8String:interface->ifa_name]]; } } } return [cset countForObject:@"awdl0"] > 1 ? YES : NO; }
方法二:
使用KVC對StatusBar進行判斷
- (BOOL)isWiFiConnected { UIApplication *app = [UIApplication sharedApplication]; NSArray *children = [[[app valueForKeyPath:@"statusBar"] valueForKeyPath:@"foregroundView"] subviews]; //獲得到網絡返回碼 for (id child in children) { if ([child isKindOfClass:NSClassFromString(@"UIStatusBarDataNetworkItemView")]) { int netType = [[child valueForKeyPath:@"dataNetworkType"] intValue]; NSLog(@"type:%@",@(netType)); if (netType == 1) { NSLog(@"2G"); return NO; } else if (netType == 2) { NSLog(@"3G"); return NO; } else if (netType == 3) { NSLog(@"4G"); return NO; } else if (netType == 5){ NSLog(@"Wifi"); return YES; } // 1,2,3,5 分別對應的網絡狀態是2G、3G、4G及WIFI。(需要判斷當前網絡類型寫個switch 判斷就OK) } } NSLog(@"not open network or no net work"); return NO; }
實際上,方法二也是對網絡連接狀態的判斷,不能判斷WiFi是否打開。不同的網絡連接狀態下,StatusBar展示不同的圖標,當WiFi打開而沒連接時,方法二得到的結果依然會是NO。
以上所述是小編給大家介紹的判斷iPhone的WiFi是否打開的兩種方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對本站網站的支持!