gpt4 book ai didi

xcode - 如何通过点击按钮来静音和取消静音iPad中的音频?

转载 作者:行者123 更新时间:2023-12-02 23:20:24 25 4
gpt4 key购买 nike

我想知道如何通过点击按钮来使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];
}

最佳答案

只需查看AVAudioPlayer API-就可以了:播放,暂停,音量等。

关于xcode - 如何通过点击按钮来静音和取消静音iPad中的音频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9595710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com