Skip to content

Instantly share code, notes, and snippets.

@yfujiki
Created January 23, 2012 16:22
Show Gist options
  • Save yfujiki/1664076 to your computer and use it in GitHub Desktop.
Save yfujiki/1664076 to your computer and use it in GitHub Desktop.
Play video in iPhone application
NSURL * url = [[NSBundle mainBundle] URLForResource:@"video_file_name" withExtension:@"mov"];
MPMoviePlayerViewController * vc = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
vc.moviePlayer.controlStyle = MPMovieControlStyleFullscreen;
[self presentMoviePlayerViewControllerAnimated:vc];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment