博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用MPMoviePlayerViewController播放视频
阅读量:6092 次
发布时间:2019-06-20

本文共 526 字,大约阅读时间需要 1 分钟。

MPMoviePlayerViewController是苹果提供的播放视频的控制器,可以直接从当前的控制器中推出即可。

NSBundle *bundle = [NSBundle mainBundle];     NSString *moviePath = [bundle pathForResource:@"Movie" ofType:@"m4v"];     NSURL *movieURL = [NSURL fileURLWithPath:moviePath];     MPMoviePlayerViewController *moviePlayerViewController = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];     moviePlayerViewController.moviePlayer.controlStyle =  MPMovieControlStyleFullscreen; [self  presentMoviePlayerViewControllerAnimated:moviePlayerViewController];

转载地址:http://helwa.baihongyu.com/

你可能感兴趣的文章
20条Linux命令面试问答
查看>>
沟通CTBS助六和集团实现财务集中管理
查看>>
Office 365 将在2018年3月1日弃用TLS 1.0/1.1
查看>>
linux的nohup命令的用法
查看>>
Activiti 环境
查看>>
python pip 安装
查看>>
查看CPU信息的命令详解
查看>>
Bitnami-Redmine通过https远程连接svn
查看>>
买家与卖家也能战略合作
查看>>
shell删除每行开始的数字
查看>>
前端--CSS
查看>>
DoD模型与OSI模型的关系及其协议对应关系
查看>>
网卡报错:Failed to start LSB: Bring up/down networking
查看>>
MySQL的root密码忘记后重置方法
查看>>
boost read_some函数历程
查看>>
lvm逻辑卷管理
查看>>
CentOS7开机提示:"initial setup of centos linux 7 (core)"
查看>>
加密类型以及相关算法
查看>>
Suse init.d 服务启动脚本写法
查看>>
KVM虚拟化实战精讲[第一章 基础环境]
查看>>