I am experience some weirdness with MPMoviePlayerController.
I am trying to set the currentPlaybackTime of a video whilst it is playing (file source). Here is an exa
You should seek using seekToTime or seekToTimeWithSeconds.
CMTime npt = CMTimeMake(9,1); [self.player seekToTime:npt];
or
CMTime npt = CMTimeMakeWithSeconds(9.3, 600); [self.player seekToTime:npt toleranceBefore:kCMTimeZero toleranceAfter:kCMTimeZero];