导入 MediaPlayer.framework
- (void)viewDidLoad
{
[super viewDidLoad];
NSString* path = [[NSBundle mainBundle] pathForResource:@"test1" ofType:@"mp4"];
NSURL* url = [NSURL fileURLWithPath:path];
_playerController = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
UIButton* button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(100, 100, 100, 40);
button.backgroundColor = [UIColor redColor];
[button addTarget:self action:@selector(play) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
}
- (void)play{
[self presentMoviePlayerViewControllerAnimated:_playerController];
//播放
[_playerController.moviePlayer play];
}
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/5208.html