ios - 如何检测 iOS Wifi 硬件是否开启 swift 3
<p><p>我正在尝试检查 WIFI 硬件是否已开启。我不在乎它是否连接到互联网。我只需要知道配置中的wifi是否打开。我需要这个,因为我将使用 GPS,并且我想确保获得最佳精度。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>enum ReachabilityType: CustomStringConvertible {
case wwan
case wiFi
var description: String {
switch self {
case .wwan: return "WWAN"
case .wiFi: return "WiFi"
}
}
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何检测 iOS Wifi 硬件是否开启 swift 3,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/45063736/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/45063736/
</a>
</p>
页:
[1]