In my iOS Swift application, and i am trying to play sound on click of a button.
func playSound()
{
var audioPlayer = AVAudioPlayer()
let soundURL = NSBundle.mainBundle().URLForResource("doorbell", withExtension: "mp3")
audioPlayer = AVAudioPlayer(contentsOfURL: soundURL, error: nil)
audioPlayer.play()
}
I am running the application in iOS iPhone Simulator.
I have doorbell.mp3 added to the application. In debug mode i can see that soundURL has a value and it is not nil.
There are no errors, but the sound does not play.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…