检查avaudioplayer当前播放时间

时间:2012-03-01 22:41:08

标签: ios avaudioplayer

这是检查AVAudioPlayer's当前播放时间的正确方法吗?

[audioPlayer play];

float seconds = audioPlayer.currentTime;

float seconds = CMTimeGetSeconds(duration); 

我如何在

之后编码
  [audioPlayer play]; 

当currentTime等于11秒时

[self performSelector:@selector(firstview) withObject:nil]; 

并且在firstTime等于23秒的第一次查看之后

[self performSelector:@selector(secondview) withObject:nil];

1 个答案:

答案 0 :(得分:8)

您可以设置NSTimer以定期检查时间。你需要一个像这样的方法:

- (void) checkPlaybackTime:(NSTimer *)theTimer
{
  float seconds = audioPlayer.currentTime;
  if (seconds => 10.5 && seconds < 11.5) {
    // do something
  } else if (seconds >= 22.5 && seconds < 23.5) {
    // do something else
  }
}

然后设置NSTimer对象每秒调用此方法(或您喜欢的任何时间间隔):

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

查看NSTimer文档以获取更多详细信息。你确实需要在正确的时间停止(无效)计时器:

https://developer.apple.com/documentation/foundation/nstimer

编辑seconds可能不会完全是11或23;你必须摆弄粒度。