我想制作一个使用蓝牙进行通信的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
任何帮助将不胜感激!非常感谢你们的时间.