有人会链接到教程,以向AVAudioPlayer添加播放进度条吗?

我在该网站和Google上进行了广泛搜索,无济于事

最佳答案

我想通了,而且还不错。

只需在定时器中更新

playbackTimer=[NSTimer scheduledTimerWithTimeInterval:0.5
                                     target:self
                                                 selector:@selector(myMethod:)
                                   userInfo:nil
                                    repeats:YES];

}


-(void)myMethod:(NSTimer*)timer {

    float total=audioPlayer.duration;
    float f=audioPlayer.currentTime / total;

    NSString *str = [NSString stringWithFormat:@"%f", f];

    playbackProgress.progress=f;

    NSLog(str);
}

关于iphone - avaudioplayer播放进度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2325167/

10-10 02:07