我正在尝试通过蓝牙耳机麦克风录制音频并通过设备扬声器播放。 我看到很少有堆栈溢出后重新编写相同的但仍然没有得到这是否可能?如果可能的话怎么做?如果有人有任何想法请通知我。
答案 0 :(得分:1)
这是可能的。设置音频会话类别时使用蓝牙选项。
let audioSession = AVAudioSession.sharedInstance()
_ = try? audioSession.setCategory(AVAudioSessionCategoryPlayAndRecord, with: .allowBluetooth)
_ = try? audioSession.setActive(true)