我是 iPhone 新手。我正在研究音频播放器。我必须在音频播放器中显示歌曲的当前时间和剩余时间。在视频播放器中,它将默认获取,但在音频播放器中,它没有得到,因此我编写了一个获取歌曲当前时间的逻辑。下面的代码就是为了这个
int minutes = (int)audioPlayer.currentTime / 60;
int seconds = (int)audioPlayer.currentTime % 60;
startDurationLabel.text = [NSString stringWithFormat"%d:%02d",minutes,seconds];
这里的 audioPlayer 是 AVAudioPlayer 的实例,startDurationLabel 是显示歌曲当前时间的标签。
但我正在努力让这个逻辑起作用并显示歌曲的剩余时间
如果有人知道,请帮助我...
Best Answer-推荐答案 strong>
试试这个
CGFloat remainingTime = audioPlayer.duration - audioPlayer.currentTime
关于ios - 如何获取在 AVAudioPlayer 中播放的歌曲的剩余时间,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/10749876/
|