You cannot add KVO to currentPlaybackTime since the property is not explicitly declared as KVO compatible.
Instead, you can regularly test the player and save the position with the code, for example:
- (void) BeginPlayerPolling { self.pollPlayerTimer = [NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(PollPlayerTimer_tick:) userInfo:nil repeats:YES]; } - (void) PollPlayerTimer_tick:(NSObject *)sender {
source share