从蓝牙输出到iPhone原生Jack ios的输入

时间:2014-06-10 05:46:08

标签: ios bluetooth core-audio avaudiosession avaudiosessiondelegate

我正在处理一个应用程序。应用程序的范围是通过蓝牙麦克风输入音频,输出音频应该转到iPhone Native Jack。我正在使用AVAudioSesion类使用以下代码: -

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

当我使用此代码时,此代码通过Bluetooth路由输入,但同时它也将输出路由到同一个蓝牙设备。我只想要解决这个问题。您也可以建议任何第三方库。或者,如果Apple使用iOS 8引入任何新API,那么它也可以使用。

0 个答案:

没有答案