0

我能够浏览所有可用的音频输入,但我需要一种方法来识别 bluetoothHFP 类别中的哪些输入是 airpods。我无法关闭名称中的“Airpods”,因为它可以由用户更改。

for input in AVAudioSession.sharedInstance().availableInputs!{
    if convertFromAVAudioSessionPort(input.portType) == convertFromAVAudioSessionPort(AVAudioSession.Port.bluetoothHFP) {
        //How do I tell here that it is airpods and not another HFP device?
    }
}
4

0 回答 0