-2
我有下面顯示的代碼。它看起來很簡單。但它沒有播放任何音頻。我該如何修改這個func用AVPlayer播放pls文件?
import AVFoundation
import MediaPlayer
func play(){
let player = AVPlayer(URL: NSURL(string: "http://www.liveatc.net/play/ltba.pls")!)
player.play()
}
您的代碼表明你不理解的Swift中變量的生命週期。您可能需要閱讀我的書:http://www.apeth.com/swiftBook/ch03.html#_variable_scope_and_lifetime – matt
thanks_________ @matt –