我正在使用我的应用程序中的BLE功能。我在项目中添加了CoreBluetooth框架。
我已经添加了,
import CoreBluetooth
在开始迅速文件。
现在,当我尝试实现以下委托方法时,
func peripheral(peripheral: CBPeripheral, didUpdateValueForCharacteristic characteristic: CBCharacteristic, error: NSError?)
它给我的错误是CBCharacteristic是未声明的类型。
最佳答案
class ViewController: UIViewController, CBCentralManagerDelegate,
CBPeripheralDelegate{
}
实现外围代理
之后就可以工作了。