Is it possible to mute MPMoviePlayerController?

后端 未结 2 1921
傲寒
傲寒 2021-02-06 15:18

In my iPhone application I want to mute & unmute MPMoviePlayerController. I have searched a lot but I am unable to succeed. Is it possible to mute audio in MPMoviePlayer con

相关标签:
2条回答
  • 2021-02-06 16:01

    Use this to mute.

    NSError *error;
    if ( ![[AVAudioSession sharedInstance] setActive:NO error:&error] ) {
        NSLog(@"Error encountered: %@", [error localizedDescription]);
    }
    

    You will have to include the AVFoundation framework.

    0 讨论(0)
  • 2021-02-06 16:14
    [[MPMusicPlayerController applicationMusicPlayer] setVolume:0];
    

    This Line will mute the sound(hopefully)..:)

    0 讨论(0)
提交回复
热议问题