我正在使用xcode 7.1,swift創建一個應用程序。我想播放音頻。一切安好。現在我的問題是,當設備處於靜音模式或靜音模式時,我想聽到聲音。我該怎麼做?在靜音模式下播放音頻 - ios swift
我使用下面的代碼來播放音頻
currentAudio!.stop()
currentAudio = try? AVAudioPlayer(contentsOfURL: NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("sample_audio", ofType: "mp3")!));
currentAudio!.currentTime = 0
currentAudio!.play();
它工作?我是否需要在所有屏幕中進行初始化,或者是否足以使用第一個視圖控制器? – Amsheer
希望它應該只能初始化一次。 – iOSEnthusiatic
好的,謝謝..它正在工作 – Amsheer