我正在尝试在Xamarin中执行以下AudioToolbox AudioSessionSetProperty。
UInt32 allowBluetoothInput = 1;
error = AudioSessionSetProperty (
kAudioSessionProperty_OverrideCategoryEnableBluetoothInput,
sizeof (allowBluetoothInput),
&allowBluetoothInput);
if (error) printf("couldn't set Bluetooth Input!");
有谁知道怎么做?提前谢谢。
答案 0 :(得分:3)
那将是:
AudioSession.OverrideCategoryEnableBluetoothInput = true;