码迷,mamicode.com
首页 > 其他好文 > 详细

利用AVFoundation播放视频

时间:2015-01-05 16:42:55      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:ios   视频   

利用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];

利用AVFoundation播放视频

标签:ios   视频   

原文地址:http://blog.csdn.net/rainlesvio/article/details/42423723

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!