我正在将 Wahoo api 用于使用 Wahoo 的外部附件(ANT+ 键)的 iPhone 应用程序。我在“将二进制文件与项目链接”部分下的“构建阶段”选项卡中添加了框架版本 2.3.5。然后,我创建了一个 test.h 和 test.m。我导入了头文件 WFConnector/WFConnector.h 并声明了一个属性
@property(nonatomic,retain) WFHardwareConnector* hardwareConnector;
在 test.m 中,在一个方法中,假设“getHWConnect”我输入了以下内容
hardwareConnector = [WFHardwareConnector sharedConnector];
hardwareConnector.delegate = self;
但是,当我尝试使用检查 ANT+ 键的状态时
if(hardwareConnector.isCommunicationHWReady)
我收到以下错误
"Property 'isCommunicationHWReady' not found on object of type "WFHardwareConnector *"
但是,该属性在标题中!检查我在下面附上的图片
也可以在api.wahoofitness.com中查看。
我犯了什么错误?请在这方面帮助我。