I am using MPMoviePlayerController to play the movie in iPhone. When I switch to some other UIViewController I pause the movie. When I come back to MPMoviePlayerController, user should be able to resume from the point where it was paused.
When I switch to some other UIViewController: 1) Pause the movie 2)Cache the movie time when it was paused. 3) Remove the view of MPMoviePlayerController from its superview due to some flickering issue.
When I come back, a) create and add the view of MPMoviePlayerController to the superview b) Set the cached time to the MPMoviePlayerController c) Call play on MPMoviePlayerController Sometimes, the previous frame (which is far by the frame where it was paused by observable amount) is shown when I call play.
How do I solve this?
Regards, Deepa