Hy to all!我是使用Xcode和objective-c进行编码的新手。我正在使用8.2 Xcode,我试图从那里编译HealthThermometer示例 https://developer.apple.com/library/content/samplecode/HealthThermometer/Introduction/Intro.html 并且它给出了很多错误:
有什么不对?
提前致谢!
答案 0 :(得分:0)
这是相当古老的示例代码。它缺少Core Bluetooth所需的#import
并尝试链接到较旧的IOBluetooth库。
为了编译它,您需要将 HealthThermometerClientAppDelegate.h 的顶部更改为:
#import <Cocoa/Cocoa.h>
#import <CoreBluetooth/CoreBluetooth.h>
您还需要进入项目设置并删除IOBluetooth框架并添加对CoreBluetooth.framework
的引用