I have run this app on my simulator as well as my phone and with multiple mp3 files however I cannot get sound to output from the app. I have included the mp3 file in the supported files. I am honestly lost as to what to do next. I receive no errors however there is no audio.
@IBAction func play (sender: AnyObject){
func sharedInstance() {
AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback, error: nil)
AVAudioSession.sharedInstance().setActive(true, error: nil)
var audioPlayer = AVAudioPlayer()
var song = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("pingpong", ofType: "mp3")!)
println(song)
var error:NSError?
audioPlayer = AVAudioPlayer(contentsOfURL: song, error: &error)
audioPlayer.prepareToPlay()
audioPlayer.play()
}
sharedInstance()
}
Just make your
var audioPlayer = AVAudioPlayer()
global for your class like shown in below code:And I have modified your code to make it safe:
This is working fine.