一个 Xcode 初学者的问题:
这是我第一次使用 Xcode 4.6.3。
我正在尝试编写一个非常简单的控制台程序,它搜索配对的 BT 设备并将它们打印到 NSLog。
它构建时出现以下错误:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_IOBluetoothDevice", referenced from:
objc-class-ref in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我疯狂地寻找。常见的问题应该是对文件的引用,其中只有头文件被导入,链接器没有找到实现(*.m-file)。然而,IOBluetooth 库是一个类似于 Foundation Framework 的标准框架。
我在上述陈述中遗漏了什么?
我也尝试过为 32 位机器构建它(构建再次失败)。这显然是一个链接器错误,但我不知道它与什么相关,除了在 x86 和 x64 架构上找到 IOBluetoothDevice 的实现时存在问题,而头文件来自标准包含的框架,称为IO蓝牙?
供您参考,我的主要代码“main.m”是:
#import <Foundation/Foundation.h>
#import <IOBluetooth/objc/IOBluetoothDevice.h> // Note the import for bluetooth
#import <IOBluetooth/objc/IOBluetoothDeviceInquiry.h> // Note the import for bluetooth
int main(int argc, const char * argv[])
{
@autoreleasepool {
IOBluetoothDevice *currentDevice;
NSArray *devices = [ IOBluetoothDevice pairedDevices];
for (id currentDevice in devices){
NSLog(@"%i : %@",[ currentDevice classOfDevice ], [ currentDevice name ]);
}
}
return 0;
}
感谢您提供任何帮助或指向正确方向的指示。