Xamarin / Monotouch中的AudioSessionSetProperty

时间:2014-05-23 14:13:50

标签: ios xamarin.ios xamarin audiounit

我正在尝试在Xamarin中执行以下AudioToolbox AudioSessionSetProperty。

UInt32 allowBluetoothInput = 1;
error = AudioSessionSetProperty (
    kAudioSessionProperty_OverrideCategoryEnableBluetoothInput,
    sizeof (allowBluetoothInput),
    &allowBluetoothInput);

if (error) printf("couldn't set Bluetooth Input!");

有谁知道怎么做?提前谢谢。

1 个答案:

答案 0 :(得分:3)

那将是:

AudioSession.OverrideCategoryEnableBluetoothInput = true;