iOS调用系统自带播放器播放视频

2270198-96af6fbb8c2e784e.png
2270198-4f88b2d67ae6ea65.png

#import <AVKit/AVKit.h>

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@", Image_Base_URL, model.filepath]];

            AVPlayerViewController *ctrl = [[AVPlayerViewController alloc] init];

            ctrl.player= [[AVPlayeralloc]initWithURL:url];

            [self presentViewController:ctrl animated:YES completion:nil];


外传:

如果要自定义视频图层,那就去自定义AVPlayer

AVPlayerLayer-AVPlayer-AVPlayerItem

猜你喜欢

转载自blog.csdn.net/weixin_33843409/article/details/86830996