Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple mp3 playing through AVAudioPlayer and I want to be able to display how much time is left.

I know the answer includes subtracting AVAudioPlayer.duration from AVAudioPlayer.currentTime but I don't know how to implement a function which calculates it while it's playing (like an onEnterFrame in Actionscript I guess). At present currentTime is static, i.e. zero.

share|improve this question

1 Answer

up vote 5 down vote accepted

I would go for an NSTimer. Schedule it to run every second while the media is played and so you can keep your UI updated with the time left.

// Place this where you start to play
NSTimer * myTimer = [NSTimer scheduledTimerWithTimeInterval:1.0
                                                     target:self
                                                   selector:@selector(updateTimeLeft)
                                                   userInfo:nil
                                                    repeats:YES];

And create the method to update you UI:

- (void)updateTimeLeft {
    NSTimeInterval timeLeft = self.player.duration - self.player.currentTime;

    // update your UI with timeLeft
    self.timeLeftLabel.text = [NSString stringWithFormat:@"%f seconds left", timeLeft];
}
share|improve this answer
Thank you vfn, it looks like the perfect solution only one problem I've found: The timer is not firing! – daidai Aug 26 '10 at 2:48
2  
Ah yep just needed to use scheduledTimerWithTimeInterval instead of timerWithTimeInterval – daidai Aug 26 '10 at 3:08
Yeah, you would need to fire it or to use the scheduled method. It's edited now! – vfn Aug 26 '10 at 3:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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