// 本地资源文件
NSString *filePath = [[NSBundle mainBundle]pathForResource:@"111.mp4" ofType:nil];
// 创建视频播放控制器
AVPlayerViewController *playerViewController = [[AVPlayerViewController alloc]init];
// 设置视频播放器
playerViewController.player= [AVPlayerplayerWithURL:[NSURLfileURLWithPath:filePath]];
[self presentViewController:playerViewController animated:YES completion:nil];
// 4. 开始播放 : 默认不会自动播放
[playerViewController.playerplay];