我已經關注了Net上的每一篇文章,但沒有解決這個問題。 聲音開始和停止權立即像0.1秒後。我可以很快聽到聲音。Swift:音頻開始和停止.1秒
這裏是真正重要的事情我的代碼: ...
let path = NSBundle.mainBundle().pathForResource("bgMusic", ofType: "mp3")
let bgMusicURL = NSURL.fileURLWithPath(path!)
var backgroundMusicPlayer:AVAudioPlayer!
do{
try AVAudioSession.sharedInstance().setActive(true)
try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
try backgroundMusicPlayer = AVAudioPlayer(contentsOfURL: bgMusicURL)
backgroundMusicPlayer!.prepareToPlay()
backgroundMusicPlayer!.play()
}catch {
print ("ERROR")
}
...
你還有其他的線程在運行嗎? – brkr