1 Star 0 Fork 0

向前轱蛹的小码农/AVPlayer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
调用例子 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
Angelo.Tsui 提交于 2016-05-05 17:15 . 调用例子
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor whiteColor];
NSString *path = [[NSBundle mainBundle]pathForResource:@"1" ofType:@"mp4"];
_player = [[XSMediaPlayer alloc]initWithFrame:CGRectMake(0, 100, 300, 300)];
_player.videoURL = [NSURL URLWithString:@"http://project.lanou3g.com/teacher/UIAPI/LOMV/432157/957c1e88bba6b811b9d8739e363c3a00.mp4"];
[self.view addSubview:_player];
}
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
if (toInterfaceOrientation == UIInterfaceOrientationPortrait) {
self.view.backgroundColor = [UIColor whiteColor];
}else if (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight) {
self.view.backgroundColor = [UIColor blackColor];
}
}
// 哪些页面支持自动转屏
- (BOOL)shouldAutorotate{
return YES;
}
// viewcontroller支持哪些转屏方向
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
// MoviePlayerViewController这个页面支持转屏方向
return UIInterfaceOrientationMaskAllButUpsideDown;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Objective-C
1
https://gitee.com/dzu2016/AVPlayer.git
git@gitee.com:dzu2016/AVPlayer.git
dzu2016
AVPlayer
AVPlayer
master

搜索帮助