Posts

Post not yet marked as solved
2 Replies
Hi,My bug report number is "51214371".I tried NEHotspot Configuration Sample in iOS12.3.1Sample Code fileprivate var configuration: NEHotspotConfiguration { let config: NEHotspotConfiguration if let password = password { config = NEHotspotConfiguration(ssid: self.ssid, passphrase: password, isWEP: self.isWEP) } else { config = NEHotspotConfiguration(ssid: self.ssid) } config.joinOnce = self.joinOnce return config } func remove(ssid: String, completion: @escaping (Error?) -> Void) { self.manager.removeConfiguration(forSSID: ssid) self.startUpdate() DispatchQueue.main.async { completion(nil) } }self.joinOnce == true is can not remove SSID.self.joinOnce == false is can remove SSID.Regards,