附近wifi热点列表-目标C

发布于 2024-11-19 08:49:36 字数 114 浏览 2 评论 0原文

我是一名新的 Objective C 程序员。我需要一些帮助。我正在开发一个应用程序,如果谷歌无法访问互联网连接,它应该打开浏览器并检查 Wifi 热点进程。我用谷歌搜索了这个,但找不到任何与此相关的信息。请帮我。

I am a new Objective C programmer. I need some help. I am developing an app in which if the internet connection is not google reachable, it should open up the browser and should check for Wifi Hotspot process. I googled for this but couldnot find any information regarding this. Please help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素手挽清风 2024-11-26 08:49:36

这实际上不是代码,这是您必须放在 Info.plist 文件中的内容。

您正在寻找的是:

UIRequiresPersistentWiFiApplication using Wifi

以下是 Apple 对此的说法:

如果您的应用程序使用 Wi-Fi 无线电访问网络,则必须通过在应用程序的 Info.plist 文件中包含 UIRequiresPersistentWiFi 键来通知系统这一事实。包含此键可以让系统知道,如果检测到任何活动的 Wi-Fi 热点,它应该显示网络选择面板。它还让系统知道,当您的应用程序运行时,它不应尝试关闭 Wi-Fi 硬件。

This is actually not code, this is something you have to put on your Info.plist file.

What you are looking for is:

UIRequiresPersistentWiFi or Application uses Wifi

Here is what Apple has to say about it:

If your application accesses the network using the Wi-Fi radios, you must notify the system of that fact by including the UIRequiresPersistentWiFi key in the application’s Info.plist file. The inclusion of this key lets the system know that it should display the network selection panel if it detects any active Wi-Fi hot spots. It also lets the system know that it should not attempt to shut down the Wi-Fi hardware while your application is running.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文