播放音效

--

需 import AVFoundation 加入音效相關的函式。

使用 AVAudioPlayer(contentsOf: NSURL.fileURL(withPath: soundPath!))函式初始化播放器
— 傳入參數是使用 Bundle.main.path(forResource: “bird”, ofType: “mp3”)函式取得音效檔案的路徑。

使用播放器的屬性 numberOfLoops 設定重複播放次數設為 0 是只播放一次不重複。

--

--