0

Apple 的蓝牙 API 没有说明应该为 [IOBluetoothDevice openL2CAPChannelSync:withPSM:withConfiguration:delegate:] 提供什么配置字典。

我想提供的键/值对我来说是未知的。为了克服这个问题,我希望向 API 调用发送一个空字典,但在幕后 - 跟踪访问了哪些键。

如何构建一个 NSDictionary 的子类,它将 NSLog 访问的键?

4

1 回答 1

0

对于IOBluetoothDevice选项,您应该查看IOBluetoothDevice.h

// These are for the configuration of L2CAP Channels:
#define kIOBluetoothL2CAPChannelMaxAllowedIncomingMTU       @"MaxAllowedIncomingMTU"
#define kIOBluetoothL2CAPChannelDesiredOutgoingMTU          @"DesiredOutgoingMTU"
于 2011-08-31T17:08:49.730 回答