iPhone - 建议用户连接到 WiFi 接入点
在我的应用程序中,我如何建议我的用户使用这些首选选项之一连接到 wifi 接入点,而不考虑当前的连接类型:
1)连接到指定的接入点(据我所知不可能)
2) 显示 Wifi 接入点对话框,以便用户可以选择并连接到所需的 WiFi 接入点
3)任何其他用户友好的选项,不会让用户
在不使用任何私有 API 的情况下自行完成所有操作?
Into my application, how can I propose my user to connect to a wifi access point, with one of those prefered options, not regarding the current connection type :
1) connect to a named access point (not possible on my knowledge)
2) display the Wifi access point dialog so the user can select and connect to the wanted wifi access point
3) any other user-friendly option, that does not leave the user do everything by itself
without using any private API ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法访问 wifi 点列表,也无法打开任何对话框供用户连接到 wifi 点。所有 wifi 功能均不作为公共 API 公开。真正的 wifi 扫描仪在 2010 年被苹果公司禁止。用户必须自己做所有事情,出于安全原因,这是有道理的。
如果您仍然想要其中任何一个,则必须使用私有框架 MobileWiFi.framework,它取代了旧的 Apple80211.framework。
You can't access a list of wifi points, or bring up any dialog for the user to connect to a wifi point. All wifi functionality is not exposed as a public API. Real wifi scanners were banned by Apple in 2010. The user has to do everything by himself, which makes sense for security reasons.
If you still want any of that you have to use the private framework MobileWiFi.framework which replaced the old Apple80211.framework.