当我尝试连接一个不存在的 wifi 时发现了一个问题,这是我的代码:
let configuration = NEHotspotConfiguration.init(ssid: "wifi-name")
NEHotspotConfigurationManager.shared.apply(configuration) { [unowned self] (error) in
print("NEHotspotConfigurationManager.error: \(error)")
}
如果 wifi 不存在,我会看到并与之对话
“无法连接网络“wifi-nam””
但是中的错误NEHotspotConfigurationManager
是nil,那么如何控制特定的ssid wifi是否存在?