iOS AVPlayer 简单应用
//1
AVPlayerViewController *avvc = [[AVPlayerViewController alloc] init];
//2
avvc.player = [[AVPlayer alloc] initWithURL:url];
//3
[self presentViewController:avvc animated:YES completion:nil];
//1
AVPlayerViewController *avvc = [[AVPlayerViewController alloc] init];
//2
avvc.player = [[AVPlayer alloc] initWithURL:url];
//3
[self presentViewController:avvc animated:YES completion:nil];