Apple 在 iOS 13 中更改了有关 WiFi 的一些内容。如果您想使用 CNCopyCurrentNetworkInfo,您的应用需要具备以下条件之一
- 有权访问位置的应用
- 您的应用是当前启用的 VPN 应用
- 您的应用通过 NEHotspotConfiguration 配置了设备当前使用的 WiFi 网络
资料来源:WWDC 19 第 713 届会议
我正在使用 NEHotspotConfiguration 配置网络,但这样做后我无法再获取当前的 SSID。
以下代码适用于 iOS 12:
/// retrieve the current SSID from a connected Wifi network
private func retrieveCurrentSSID() -> String? {
let interfaces = CNCopySupportedInterfaces() as? [String]
let interface = interfaces?
.compactMap { [weak self] in self?.retrieveInterfaceInfo(from: $0) }
.first
return interface
}
/// Retrieve information about a specific network interface
private func retrieveInterfaceInfo(from interface: String) -> String? {
guard let interfaceInfo = CNCopyCurrentNetworkInfo(interface as CFString) as? [String: AnyObject],
let ssid = interfaceInfo[kCNNetworkInfoKeySSID as String] as? String
else {
return nil
}
return ssid
}
iOS 13CNCopyCurrentNetworkInfo
总是返回 nil。
我的应用程序设置了访问 WiFi 信息功能。
谢谢你的帮助!