如何检测用户的iPhone关闭或开启的蓝牙?

时间:2016-12-18 12:13:01

标签: swift bluetooth

我试图检测用户iPhone开启或关闭的蓝牙。如果它是关我想发送通知给用户打开它。 到目前为止,我已经这样做了:

import CoreBluetooth

  class ViewController: UIViewController, CLLocationManagerDelegate,AVCaptureMetadataOutputObjectsDelegate,CBManager {   

 var myBTManager = CBPeripheralManager(delegate: self, queue: nil, options: nil)

  }

func peripheralManagerDidUpdateState(peripheral: CBPeripheralManager!) {
    print(#function)
    if peripheral.state == CBManagerState.poweredOn {
        print("Broadcasting...")

    //    myBTManager!.startAdvertising(_broadcastBeaconDict)
    } else if peripheral.state == CBManagerState.poweredOff {
        print("Stopped")
        myBTManager!.stopAdvertising()
    } else if peripheral.state == CBManagerState.unsupported {
        print("Unsupported")
    } else if peripheral.state == CBManagerState.unauthorized {
        print("This option is not allowed by your application")
    }
}

但正如你从图片中看到的那样,出了点问题。enter image description here

请你帮我解决这个问题,我是swift和CoreBluetooth技术的新手。我也使用Reachability来检测Wi-Fi连接,所以如果它也适用于蓝牙,我宁愿使用Reachability。

2 个答案:

答案 0 :(得分:5)

  1. 您应该实施协议CBPeripheralManagerDelegate,因此请将CBManager定义行中的class替换为CBPeripheralManagerDelegate

  2. 在Swift 3中,peripheralManagerDidUpdateState的签名现在是:

    func peripheralManagerDidUpdateState(_ peripheral: CBPeripheralManager)
    
  3. 您无法在课程创建时初始化CBPeripheralManager,因为self仅在初始化课程后可用。相反,建立你的财产:

    var myBTManager: CBPeripheralManager?
    

    并在viewDidLoad中初始化:

    override func viewDidLoad() {
        ...       
        myBTManager = CBPeripheralManager(delegate: self, queue: nil, options: nil)
        ...
    }
    

答案 1 :(得分:0)

您可以使用CBCentralMangerDelegate方法:

    public func centralManager(_ central: CBCentralManager, willRestoreState dict: [String : Any]) {
            if central.state == .poweredOn {
                //Bluetooth is on
           } else if central.state == .poweredOff {
                //Bluetooth is off
           }
    }