我试图使用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。