是否可以运行返回用户连接的无线网络名称的方法?在我的应用程序内部,我希望能够返回用户连接到的无线网络的名称。
3 回答
这对我来说很完美:
#import <SystemConfiguration/CaptiveNetwork.h>
CFArrayRef myArray = CNCopySupportedInterfaces();
CFDictionaryRef myDict = CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray, 0));
// NSLog(@"SSID: %@",CFDictionaryGetValue(myDict, kCNNetworkInfoKeySSID));
NSString *networkName = CFDictionaryGetValue(myDict, kCNNetworkInfoKeySSID);
if ([networkName isEqualToString:@"Hot Dog"])
{
self.storeNameController = [[StoreDataController alloc] init];
[self.storeNameController addStoreNamesObject];
}
else {
UIAlertView *alert = [[UIAlertView alloc]initWithTitle: @"Connection Failed"
message: @"Please connect to the Hot Dog network and try again"
delegate: self
cancelButtonTitle: @"Close"
otherButtonTitles: nil];
[alert show];
从 Developer.apple中,您可以使用CNCopyCurrentNetworkInfo
它返回给定网络接口的当前网络信息。
CFDictionaryRef CNCopyCurrentNetworkInfo (
CFStringRef interfaceName
);
它包含一个包含接口当前网络信息的字典。所有权遵循创建规则。
注意:在 iOS 4.1 和更高版本中可用。
例子:
这个例子在真实设备上可以正常工作,它可能会在模拟器中崩溃。
添加SystemConfiguration.framework
导入 CaptiveNetwork
头如下
#import <SystemConfiguration/CaptiveNetwork.h>
然后编写下面的代码。
CFArrayRef myArray = CNCopySupportedInterfaces();
// Get the dictionary containing the captive network infomation
CFDictionaryRef captiveNtwrkDict = CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray, 0));
NSLog(@"Information of the network we're connected to: %@", captiveNtwrkDict);
NSDictionary *dict = (__bridge NSDictionary*) captiveNtwrkDict;
NSString* ssid = [dict objectForKey:@"SSID"];
NSLog(@"network name: %@",ssid);
或者
使用Bonjour,应用程序既在本地网络上宣传自己,又在网络上显示该应用程序的其他实例的列表
查看示例Witap应用程序
坏消息:'CNCopyCurrentNetworkInfo' 已弃用:在 iOS 9.0 中首次弃用- 对于强制网络应用程序,它已完全被 <NetworkExtension/NEHotspotHelper.h> 取代。对于其他应用程序,没有直接替代。请提交描述您使用此 API 的错误,以便我们可以随着这种情况的发展考虑您的要求。
好消息:虽然已被弃用,但它在 iOS 9 中仍然有效,并且在 iOS 10 中未被弃用。
它在 iOS 13 中仍然有效,但前提是应用程序实现了定位服务并且用户授权了它们的使用。