My application uses HTTP live streaming together with AVQueuePlayer. When the playback almost reaches the end of the current song, I use another device to initiate a call.
In the begin interruption method -(void)beginInterruption I pause the player [self.player pause] and handle the UI changes.
If the call time is greater than the remaining seconds to be played, when the interruption ends -(void)endInterruptionWithFlags:(NSUInteger)flags the current time of the player becomes zero [self.player currentTime].
I couldn't find any reason for this in my code. Am I doing something wrong? I would like to resume the playback from where I've left it before the call.