Is it possible to mute MPMoviePlayerController?

后端 未结 2 1920
傲寒
傲寒 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.

提交回复
热议问题