首页 > 解决方案 > 在 project-swift.h 中找不到协议声明

问题描述

我正在尝试构建我的项目,但出现以下错误:

找不到“CBCentralManagerDelegate”的协议声明;你的意思是'CLLocationManagerDelegate'吗?```

找不到“CBPeripheralDelegate”的协议声明```

在我的Project-Swift.h文件中的这段代码上

@class CBService;
@class CBCharacteristic;

@interface KestrelDeviceConnect (SWIFT_EXTENSION(FieldView)) <CBCentralManagerDelegate, CBPeripheralDelegate>

任何人都知道问题是什么以及如何解决它?

标签: iosswiftxcodecore-bluetooth

解决方案


好像我需要在Project-Bridging-Header.h

#import <CoreBluetooth/CoreBluetooth.h>


推荐阅读