I try to play the audio of a link when I press a certain button, but nothing is heard. This is my code:
@IBAction func Reproducir(sender: AnyObject) {
let urlString = "http://elpenitente.playcofrade.com/marchas/\(pasarid).mp3"
let url = NSURL(string: urlString)
let avPlayer = AVPlayer(URL: url!)
avPlayer.play()
}