我正在扩展 NameAndPassword 示例(https://github.com/skycocker/NameAndPassword),我需要在此实现文件中访问 IOBluetooth 方法:https://github.com/skycocker/NameAndPassword/blob/master/NameAndPasswordPlugin。米
界面如下所示:
@interface EXNameAndPassword : SFAuthorizationPluginView
如何让它继承自CBCentralManagerDelegate
appdelegate 中的类似内容:
@interface AppDelegate : NSObject <CBCentralManagerDelegate, CBPeripheralDelegate>
我需要EXNameAndPassword
从 SFAuthorizationPluginView 和 CBCentralManagerDelegate 和其他东西继承。我相信这很容易,我只是一个 obj-c 初学者。我读过关于作文的文章,但我无法让它发挥作用。
我目前拥有的是
@interface EXNameAndPassword : SFAuthorizationPluginView <CBCentralManagerDelegate, CBPeripheralDelegate>
但我不断收到关于未合成属性的警告——我不必在不需要SFAuthorizationPluginView
继承的项目中合成它们,因此我想我做错了什么。