iPhone控件之MPMoviePlayerViewController

MPMoviePlayerViewController用于播放视频,用法如下:

NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"movie" ofType:@"mp4"];
NSURL *movieURL = [NSURL fileURLWithPath:moviePath];
MPMoviePlayerViewController *moviePlayerViewController = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
moviePlayerViewController.moviePlayer.controlStyle =  MPMovieControlStyleFullscreen;
 [self  presentMoviePlayerViewControllerAnimated:moviePlayerViewController]; 

持续更新中⋯⋯

原文地址:https://www.cnblogs.com/foxmin/p/2445142.html