Swift – BTLE – 如何添加CBCentralManagerDelegate Protocal

前端之家收集整理的这篇文章主要介绍了Swift – BTLE – 如何添加CBCentralManagerDelegate Protocal前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想制作一个使用蓝牙进行通信的ios应用程序.我正在使用 swift.

所以首先我添加CoreBluetooth.framework,然后我添加一个bridge.h并将文件添加到系统桥,导入“CoreBluetooth / CoreBluetooth.h”.

然后我创建一个新类,

import UIKit

class BTCentral: NSObject,CBCentralManagerDelegate   {

}

我打算在那个类中创建一个蓝牙CBCentralManager.但是,上面的代码给了我一个错误.

Type 'BTCentral' does not conform to protocol 'CBCentralManagerDelegate'

这是一个特定的ScreenShot:click here

任何帮助将不胜感激!非常感谢你们的时间.

您必须实现协议所需的所有方法.在这种情况下,CBCentralManagerDelegate只需要实现一个方法,centralManagerDidUpdateState().

将此方法添加到您的类中,错误将消失.

func centralManagerDidUpdateState(central: CBCentralManager!) {

}

猜你在找的Swift相关文章