Frage

I am playing an audio clip using AvAudipPlayer, I want to know if there is a way to get progress on how much time is left or played ? I want to animate the slider control while the audio is being played in a view is this possible ?

War es hilfreich?

Lösung

You should read AVAudioPlayer's documentation. You'll find that the player has two properties that pertain to this, currentTime and duration

audioPlayer.currentTime

audioPlayer.duration

Then, assuming that you're leaving your sliders min and max values at their default settings (0 - 1), you can determine progress by simply dividing currentTime by duration.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top