利用AVFoundation播放视频
发表时间:2020-10-19
发布人:葵宇科技
浏览次数:41
应用AVFoundation播放视频
by 伍雪颖
#import <AVFoundation/AVFoundation.h>
NSURL *URL = [[NSBundle mainBundle] URLForResource:@"13_cn" withExtension:@"mp4"];
AVPlayer *player = [AVPlayer playerWithURL:URL];
AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];
playerLayer.frame = self.view.bounds;
[self.view.layer addSublayer:playerLayer];
[player play];