iPhone SDK - 静音

时间:2010-09-03 10:25:06

标签: iphone objective-c audio mute

我有以下播放m背景音乐:

NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/bgMusic.mp3", [[NSBundle mainBundle] resourcePath]]];

    NSError *error;
    bgMusic = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
    bgMusic.numberOfLoops = -1;
    bgMusic.volume = 0.1;

    if (bgMusic == nil)
        NSLog([error description]);
    else
        [bgMusic play];

但是我怎么能在任何视野中静音所有的声音,而不仅仅是这个声音?

感谢。

1 个答案:

答案 0 :(得分:1)

[[MPMusicPlayerController applicationMusicPlayer] setVolume:(use a value between 0.0 and 1.0)]

如果您的MPMoviePlayerController使用应用程序音频会话,则可以使用。