1

我想知道如何通过点击按钮在我的 iPad 应用程序上使音频静音和取消静音。我的 viewDidLoad 方法中已经有一个工作代码,可以在启动应用程序时播放音乐。我需要做的就是创建一个按钮,该按钮将停止播放音乐并在再次点击时恢复它。

这是我的 viewDidLoad 中的代码:

- (void)viewDidLoad
{
    NSString *path = [[NSBundle mainBundle] pathForResource:@"Bored" ofType:@"mp3"];
    AVAudioPlayer* theAudio = [[AVAudioPlayer alloc]initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
    theAudio.delegate = self;
    [theAudio play];

    [super viewDidLoad];
}
4

1 回答 1

1

看看AVAudioPlayer API - 一切都在那里:播放、暂停、音量等。

于 2012-03-07T07:01:06.267 回答