Get Wifi list without leaving my app is it possible?

I want scan near by wifi list without leaving is it possible ? please give me some useful information or documentation

You cannot do it directly, only the current network SSID.

Otherwise, AFAIK, you have to request permission to Apple:

https://stackoverflow.com/questions/49525912/how-to-get-available-all-wifi-network-name-listing-in-ios-using-swift

Accepted Answer

Otherwise, AFAIK, you have to request permission to Apple:

To be clear, there is no general-purpose Wi-Fi scanning API on iOS. The only API in this space that needs permission from Apple is NEHotspotHelper, and that API was specifically designed for building hotspot helpers, with both business and technical restrictions that prevent it from being a general-purpose API.

DTL2021, Why do you need to scan for nearby Wi-Fi networks? As explained in QA1942 iOS Wi-Fi Management APIs, there are a variety of special-purpose APIs that that might be appropriate based on your specific requirements.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

we build camera device like go pro camera which is connect with mobile through wifi that's why we need to wifi list in our application i have another quires i am looking for NEHotspotHelper API Reference i didn't know how it is used or where it can be find Simply my question is that the NEHotspotHelper API Reference come with when the apple approve the our request ?

we build camera device like go pro camera which is connect with mobile through wifi that's why we need to wifi list in our application i have another quires i am looking for NEHotspotHelper API Reference i didn't know how it is used or where it can be find Simply my question is that the NEHotspotHelper API Reference come with when the apple approve the our request ?

I’m sorry but I’m struggling to parse this text to find questions that I can answer )-:

What I can say is that:

  • It looks like you’re dealing with an accessory integration issue.

  • The hotspot helper infrastructure is not intended to be used for accessory integration.

  • There are both business and technical limitations that block such usage.

As to what you can do, I have some questions:

  • Is the goal to get your accessory on to an existing Wi-Fi network?

  • Or does the accessory publish a Wi-Fi network and your goal is to have the iOS device join that?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Get Wifi list without leaving my app is it possible?
 
 
Q