本文介绍了是否可以将MPMoviePlayerController静音?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的iPhone应用程序中,我想要静音&取消静音MPMoviePlayerController。
我搜索了很多,但我无法成功。是否可以在MPMoviePlayer控制器中静音?
请帮帮我。
提前致谢。
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 controller?Please help me out.Thanks in advance.
推荐答案
用此来静音。
NSError *error;
if ( ![[AVAudioSession sharedInstance] setActive:NO error:&error] ) {
NSLog(@"Error encountered: %@", [error localizedDescription]);
}
您必须包含AVFoundation框架。
You will have to include the AVFoundation framework.
这篇关于是否可以将MPMoviePlayerController静音?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!