Search code examples
xcodeios8avaudioplayeraudiotoolboxavkit

Play sound when device is in silent mode in ios 8 and later


As per my title, i am searching any code for playing sound when my device is in silent mode. I am searching from 3days but in ios 8 and later no code is working for silent mode.

Any help would be appreciated. Please pass me any suggestion and advice as soon as possible.

Thanks


Solution

  • You can use AVPlayer for play file sound and set:

    let session = AVAudioSession.sharedInstance()
        try! session.setCategory(AVAudioSessionCategoryPlayback)
        try! session.setActive(true)
    

    You can check my example code here:Sample