IOS get list of wifi networks available

前端 未结 3 731
栀梦
栀梦 2021-01-07 02:21

I have simple question but i dont know how to implement this. I need to create an app that can get list of available wifi networks and when user click on some network iphone

相关标签:
3条回答
  • 2021-01-07 02:47

    Without the use of private library (Apple80211) it will not provide you other reachable wifi list or other info.

    You can refer to: How do I use CaptiveNetwork to get the current WiFi Hotspot Name for more information.

    0 讨论(0)
  • 2021-01-07 02:50

    Technically yes you can get that info. Take a look at this project for example: https://code.google.com/p/iphone-wireless/

    However, according to AppStore terms and conditions you are only allowed to get the SSID of the network you are currently connected to but your are not allowed to publish an app that uses private libraries. Take a look at this issue How do I use CaptiveNetwork to get the current WiFi Hotspot Name

    0 讨论(0)
  • 2021-01-07 02:59

    You can do this with abilities of the system, but you can't publish it on the appstore because it is private api.

    0 讨论(0)
提交回复
热议问题