在iOS 11和#34中连接到wifi网络;无法加入网络"

时间:2018-01-10 22:30:58

标签: ios swift networking

我试图连接到app内的wifi网络。使用以下代码:

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")
    }        
}

但是当我无法加入网络时,我会收到提示: "无法加入网络testNetwork"

我的问题是,如果我无法连接,会显示警告吗?

1 个答案:

答案 0 :(得分:0)

我非常确定您不能截取和隐藏该消息,因为它是由操作系统处理的(与加入网络弹出窗口相同)。