Ниже скопируйте код и пропустите TestViewController. Becoz Here AutoRelease CustomMoviePlayer
- (void)loadMoviePlayer
{
// Play movie from the bundle
NSString *path = [[NSBundle mainBundle] pathForResource:@"Movie-1" ofType:@"mp4" inDirectory:nil];
// Create custom movie player
moviePlayer = [[CustomMoviePlayerViewController alloc] initWithPath:path];
// Show the movie player as modal
[self presentModalViewController:moviePlayer animated:YES];
// Prep and play the movie
[moviePlayer readyPlayer];
}