我正在尝试在安装了 iOS 11 的设备中创建/添加热点配置。
我的代码如下
let hotspotConfig = NEHotspotConfiguration(ssid: "testNetwork")
hotspotConfig.joinOnce = true
NEHotspotConfigurationManager.shared.apply(hotspotConfig) { (configurationError) in
if configurationError != nil {
print("error")
print(configurationError!.localizedDescription)
} else {
print("success")
}
}
当我尝试运行代码时。设备提示权限如下:-
"AppName" wants to join Wi-Fi Network "testNetwork"
但是在点击“加入”时,我收到以下回复
Unable to join the network "testNetwork"
但是,在调试控制台上“成功”正在打印。
请告诉我我做错了什么。