2010-09-03 137 views
0

我有以下到䛨m背景音樂:iPhone SDK - 靜音

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

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

如果您MPMoviePlayerController使用應用程序音頻會話,這個工程。