0

我有以下播放 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];

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

谢谢。

4

1 回答 1

1

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

如果您MPMoviePlayerController使用应用程序音频会话,则此方法有效。

于 2011-04-09T14:30:24.857 回答