1

In iOS 11 Apple has added NEHotspotConfiguration and NEHotspotConfigurationManager

I am trying to build an app - where:

  1. User opens the app
  2. User scans for available Wifi networks
  3. User selects to connect a network

Have tried below links:

https://developer.apple.com/documentation/networkextension/nehotspotconfiguration

https://developer.apple.com/documentation/networkextension/nehotspotconfigurationmanager

  • only you got connected wifi name you can't get the name of available wifi networks – Bhupat Bheda Oct 02 '17 at 11:35
  • That API won't work for exactly what you're trying to do. However, both NEHotspotConfiguration and NEHotspotNetwork may do something close to what you want to do. See [the bottom of this answer](https://stackoverflow.com/a/52472782/35690) for more info. – Senseful Sep 24 '18 at 05:13
  • Possible duplicate of [iPhone get a list of all SSIDs without private library](https://stackoverflow.com/questions/9684341/iphone-get-a-list-of-all-ssids-without-private-library) – Senseful Sep 24 '18 at 05:25

1 Answers1

1

This is not possible on iOS. The API you have found is the most capable API for interacting with WiFi access points

Kyle Redfearn
  • 2,172
  • 16
  • 34