我正在使用乐器应用程序,我的声音输出问题。我目前有不同的乐器标记在一个按钮上。当我按下这些碎片时,它们会相互切断,不能自己玩耍。
有什么想法?这是我当前代码的一部分。
func playSound() {
let soundURL = Bundle.main.url(forResource: selectedFileName, withExtension: "wav")
do {
audioPlayer = try AVAudioPlayer(contentsOf: soundURL!)
}
catch {
print(error)
}
audioPlayer.play()
}