i created a music player with previous and next functionality in my app.i want to impliment song playback slider. how to do this?

link|improve this question

68% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Use a UISlider setting the maxValue to the current playing song duration (in seconds) and the minValue to 0.

Assuming that you're using an MPMusicPlayerController use the currentPlaybackTime to get the current time of the playing track and use that value to update the slider each second

slider.value = musicPlayerController.currentPlaybackTime;
slider.minimumValue = 0;
slider.maximumValue = [musicPlayerController.nowPlayingItem valueForProperty:@"MPMediaItemPropertyPlaybackDuration"];
link|improve this answer
i am using MPmusicplayer. – Vivek Parikh Feb 13 at 10:54
Then use currentPlaybackTime property of MPMusicPlayerController to get the current time of the playing track and update it every second using an NSTimer. – Francesco Feb 13 at 11:07
I've updated the entire answer. – Francesco Feb 13 at 11:15
feedback
- (IBAction)slide:(id)sender{

    [musicPlayer setCurrentPlaybackTime: [slider value]];
}

- (void)actualizaSlider{

slider.value = musicPlayer.currentPlaybackTime;
slider.minimumValue = 0;

NSNumber *duration = [self.musicPlayer.nowPlayingItem valueForProperty:MPMediaItemPropertyPlaybackDuration];

float totalTime = [duration floatValue];

slider.maximumValue = totalTime;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.