首页 > 代码库 > 利用AVFoundation播放视频

利用AVFoundation播放视频

利用AVFoundation播放视频

by 伍雪颖

#import<AVFoundation/AVFoundation.h>

NSURL *URL = [[NSBundlemainBundle]URLForResource:@"13_cn"withExtension:@"mp4"];
AVPlayer *player = [AVPlayerplayerWithURL:URL];
AVPlayerLayer *playerLayer = [AVPlayerLayerplayerLayerWithPlayer:player];
   
playerLayer.
frame =self.view.bounds;
[
self.view.layeraddSublayer:playerLayer];

[player play];

利用AVFoundation播放视频