菜鸟教程小白 发表于 2022-12-12 21:11:29

ios - 如何获取在 AVAudioPlayer 中播放的歌曲的剩余时间


                                            <p><p>我是 iPhone 新手。我正在研究音频播放器。我必须在音频播放器中显示歌曲的当前时间和剩余时间。在视频播放器中,它将默认获取,但在音频播放器中,它没有得到,因此我编写了一个获取歌曲当前时间的逻辑。下面的代码就是为了这个</p>

<pre><code>int minutes = (int)audioPlayer.currentTime / 60;
int seconds = (int)audioPlayer.currentTime % 60;
startDurationLabel.text = ;
</code></pre>

<p>这里的 audioPlayer 是 AVAudioPlayer 的实例,startDurationLabel 是显示歌曲当前时间的标签。</p>

<p>但我正在努力让这个逻辑起作用并显示歌曲的剩余时间</p>

<p>如果有人知道,请帮助我...</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试这个</p>

<pre><code>CGFloat remainingTime =   audioPlayer.duration - audioPlayer.currentTime
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何获取在 AVAudioPlayer 中播放的歌曲的剩余时间,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10749876/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10749876/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何获取在 AVAudioPlayer 中播放的歌曲的剩余时间