The Mute Button Won't Mute AVAudioPlayer

前端 未结 3 1684
再見小時候
再見小時候 2021-02-05 19:32

I need to loop play a .caf file in my iPhone app.

The AVAudioPlayer looks promising. But there\'s one problem. It won\'t stop or mute even if I pressed the mute button o

3条回答
  •  说谎
    说谎 (楼主)
    2021-02-05 20:13

    my 2 cents for swift 3.0:

    let sharedSession = AVAudioSession.sharedInstance()
    
    do {
        try sharedSession.setCategory(AVAudioSessionCategoryAmbient)
    } catch _{
        return false
    }
    

    or simpler:

    try? sharedSession.setCategory(AVAudioSessionCategoryAmbient)
    

提交回复
热议问题