??
? ? // 本地資源文件
? ? NSString *filePath = [[NSBundle mainBundle]pathForResource:@"111.mp4" ofType:nil];
? ? // 創(chuàng)建視頻播放控制器
? ? AVPlayerViewController *playerViewController = [[AVPlayerViewController alloc]init];
? ? // 設置視頻播放器
? ? playerViewController.player= [AVPlayerplayerWithURL:[NSURLfileURLWithPath:filePath]];
? ? [self presentViewController:playerViewController animated:YES completion:nil];
? ? // 4. 開始播放 : 默認不會自動播放
? ? [playerViewController.playerplay];