I've the code shown below. It looks pretty simple. But it is not playing any audio. How am I need to modify this func
import AVFoundation
import MediaPlayer
func play(){
let player = AVPlayer(URL: NSURL(string: "http://somewebpage.com/abc.pls")!)
player.play()
}