【发布时间】:2015-01-21 19:25:15
【问题描述】:
我们如何确定是否使用 Swift 语言打开/关闭了蓝牙或 Wifi?
我的应用程序使用蓝牙或 Wifi 与其他设备进行通信。我们对这些通信没有任何问题,但如果 Wifi 和/或蓝牙关闭(当用户使用应用程序时),我们想通知用户。我无法在 Swift 中做到这一点。
【问题讨论】:
我们如何确定是否使用 Swift 语言打开/关闭了蓝牙或 Wifi?
我的应用程序使用蓝牙或 Wifi 与其他设备进行通信。我们对这些通信没有任何问题,但如果 Wifi 和/或蓝牙关闭(当用户使用应用程序时),我们想通知用户。我无法在 Swift 中做到这一点。
【问题讨论】:
对于 iOS 中的蓝牙,您有 CBPeripheralManager(在 CoreBluetooth 框架中)。要检查蓝牙连接,请将您的类声明为 CBPeripheralManager 的委托,然后创建一个局部变量:
var myBTManager = CBPeripheralManager(delegate: self, queue: nil, options: nil)
然后,您的类必须实现回调,以便在启用或禁用蓝牙时引起注意。下面的代码是从我的项目中提取的,用于 Beacon 管理器
//BT Manager
func peripheralManagerDidUpdateState(peripheral: CBPeripheralManager!) {
println(__FUNCTION__)
if peripheral.state == CBPeripheralManagerState.PoweredOn {
println("Broadcasting...")
//start broadcasting
myBTManager!.startAdvertising(_broadcastBeaconDict)
} else if peripheral.state == CBPeripheralManagerState.PoweredOff {
println("Stopped")
myBTManager!.stopAdvertising()
} else if peripheral.state == CBPeripheralManagerState.Unsupported {
println("Unsupported")
} else if peripheral.state == CBPeripheralManagerState.Unauthorized {
println("This option is not allowed by your application")
}
}
对于 Wifi,看看这个 Github:https://github.com/ashleymills/Reachability.swift
【讨论】: