iOS简单的视频播放

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

导入 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];
}