iphone 停止 AVAudioPlayer

发布于 2024-11-07 06:34:15 字数 212 浏览 0 评论 0原文

我想在单击新选项卡时停止 AVAudioPlayer 。停止暂停按钮工作正常,但如果我单击新选项卡栏,播放器将在后台播放,那么我如何停止播放器。

我用过:

-(void)stop_play
{
    [player stop];
    play.hidden=NO;
    stop.hidden=YES;
}

I want to stop the AVAudioPlayer when click on new tab. Stop an Pause button are working properly but if i am click on new tab bar the player is to be play in background so how can i stop the player.

I used:

-(void)stop_play
{
    [player stop];
    play.hidden=NO;
    stop.hidden=YES;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葵雨 2024-11-14 06:34:15

当您单击新选项卡时,在操作方法中编写如下代码

if(audioPlayer.playing){
[audioPlayer stop];
}

when you click on new tab,in your action method write code like this

if(audioPlayer.playing){
[audioPlayer stop];
}
给我一枪 2024-11-14 06:34:15

当你的 AVAudioPlayer 播放时,将一个 bool var 设置为 YES.. 然后调用停止方法并传递这个 bool var.. 就像这里的代码一样,

if(isPlay)
{
isPlay = NO;
[audioPlayer stop];
}

然后你播放音频再次设置 bool var YES...

when your AVAudioPlayer playing, set one bool var as YES.. than call stop maethod with passing this bool var.. like Code here

if(isPlay)
{
isPlay = NO;
[audioPlayer stop];
}

after than you play audio set bool var again YES...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文