我正在尝试使用 IOBluetoothPairingController 的实例以模态方式显示一个窗口,用于选择要配对的蓝牙设备。Apple 声明“该课程将在必要时显示一张表格,要求用户输入 PIN 码”,但我认为这并没有发生,这会阻止我与我的 NXT 设备配对。
当我运行程序时,我也遇到了这个错误:
Failed to connect (mPasskeyDisplay) outlet from (IOBluetoothDevicePairViewController) to (IOBluetoothPasskeyDisplay): missing setter or instance variable
这就是我到目前为止所做的所有测试:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
IOBluetoothPairingController *pc = [IOBluetoothPairingController pairingController];
[pc runModal];
}
我一直无法找到有关此问题的任何信息,有什么建议吗?我在 Yosemite 上使用 Xcode 6.1.1。