I am able to play the video files using the MPMoviePlayerViewController, Everything works fine. But if I press the Home Button, and open the application now, the video is removed from the super view. I know how to get the Notifications. Can you tell me how to resume the same video ?
NSString* filePath = [[NSBundle mainBundle] pathForResource:@"adv" ofType:@"mp4"];
NSURL* url = [NSURL fileURLWithPath:filePath];
_moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
[_moviePlayer.view setFrame:self.view.bounds];
[self.view addSubview:_moviePlayer.view];
I am playing the video using the above code. If I press the Home Button , and come back to the application , the video is gone. I am able to see only Loading..