这是检查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];
答案 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;你必须摆弄粒度。