How to make MPMoviePlayerController ignore the mute switch

后端 未结 5 1876
無奈伤痛
無奈伤痛 2021-02-07 02:21

I want to play a video using MPMoviePlayerController but I want it to ignore the mute switch, similar to the behavior of Youtube\'s video player.

Any ideas?

5条回答
  •  野性不改
    2021-02-07 02:44

    After you import AVFoundation just put this in your delegate:

    [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: nil];

提交回复
热议问题