我正在开发一个应用程序。该应用程序的范围是通过蓝牙麦克风获取输入音频,输出音频应转到 iPhone Native Jack。我正在AVAudioSesion
使用以下代码使用类:-
UInt32 allowBluetoothInput = 1;
AudioSessionSetProperty (kAudioSessionProperty_OverrideCategoryEnableBluetoothInput, sizeof (allowBluetoothInput), &allowBluetoothInput);
当我使用此代码时,此代码通过路由输入Bluetooth
但同时也将输出路由到同一蓝牙设备。我只是想要一个解决这个问题的方法。您也可以建议任何第三方库。或者,如果 Apple 引入了任何新的 API,iOS 8
那么它也可以工作。