AVAudioPlayer - Отображение таймера обратного отсчета на UILabel - PullRequest
3 голосов
/ 19 мая 2011

У меня есть таймер обратного отсчета, который отображает количество секунд, оставшихся на аудиодорожке. По какой-то причине обратный отсчет отсчитывается не с интервалом в 1 секунду, а с двумя секундами на первом и затем на 1 секунду на следующем. (Считается по этому шаблону - он скачет 2 секунды, затем 1 снова и снова).

вот мой код:

// display current time left on the track
- (void)updateTimeLeft {
    NSTimeInterval timeLeft = self.player.duration - self.player.currentTime;

    // update your UI with timeLeft
    self.timeDisplay.text = [NSString stringWithFormat:@"%.2f", timeLeft / 60];

}

а вот мой NSTimer:

NSTimer * myTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateTimeLeft) userInfo:nil repeats:YES];

спасибо за любую помощь.

Ответы [ 3 ]

7 голосов
/ 19 мая 2011

попробуйте

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

int min=timeLeft/60;

int sec = lroundf(timeLeft) % 60;

// update your UI with timeLeft
self. timeDisplay.text = [NSString stringWithFormat:@"%d minutes %d seconds", min,sec];
}

просто идея

1 голос
/ 19 мая 2011
 - (void)updateTimeLeft
 {
NSTimeInterval timeLeft = self.player.duration - self.player.currentTime;

// update your UI with timeLeft
self. timeDisplay.text = [NSString stringWithFormat:@"%f seconds left", timeLeft];
}

попробуйте вот так ... будет отображаться только в секундах

0 голосов
/ 08 ноября 2017

Лучший способ использования системного формата:

    - (NSString*)updateTimeLeft
    {
        float current = CMTimeGetSeconds(_player.currentItem.currentTime);
        float duration = CMTimeGetSeconds(_player.currentItem.duration);

        if(!isnan(current) && !isnan(duration)){
             NSTimeInterval timeLeft = duration - current;    
             NSTimeInterval durationInSeconds = timeLeft;
             NSDateComponentsFormatter *formatter = [[NSDateComponentsFormatter alloc] init];
             formatter.allowedUnits = NSCalendarUnitMinute | NSCalendarUnitSecond;
             formatter.zeroFormattingBehavior = NSDateComponentsFormatterZeroFormattingBehaviorPad;
             NSString *string = [formatter stringFromTimeInterval:durationInSeconds];

             return string;
         }

     return nil;
    }
...