XCode HealthThermometer示例编译错误

时间:2017-07-05 05:52:26

标签: xcode core-bluetooth

Hy to all!我是使用Xcode和objective-c进行编码的新手。我正在使用8.2 Xcode,我试图从那里编译HealthThermometer示例 https://developer.apple.com/library/content/samplecode/HealthThermometer/Introduction/Intro.html 并且它给出了很多错误: enter image description here

有什么不对?

提前致谢!

1 个答案:

答案 0 :(得分:0)

这是相当古老的示例代码。它缺少Core Bluetooth所需的#import并尝试链接到较旧的IOBluetooth库。

为了编译它,您需要将 HealthThermometerClientAppDelegate.h 的顶部更改为:

#import <Cocoa/Cocoa.h>
#import <CoreBluetooth/CoreBluetooth.h>

您还需要进入项目设置并删除IOBluetooth框架并添加对CoreBluetooth.framework的引用