我想知道如何在Swift中为我正在进行的项目添加背景音乐
答案 0 :(得分:4)
您可以使用AVAudioPlayer
:
let soundFilePath = NSBundle.mainBundle().pathForResource("mySound", ofType: "mySound")
let soundFileURL = NSURL(fileURLWithPath: soundFilePath!)
let player = AVAudioPlayer(contentsOfURL: soundFileURL, error: nil)
player.numberOfLoops = -1 //infinite
player.play()
不要忘记在项目中import AVFoundation
。