codecamp

CAVideoPlayerControlView(视频播放器控制视图)

类说明

视频播放器控制。


CAVideoPlayerControlView 属性(点击查看方法介绍)

属性说明
Title标题
ShowBackButton显示后退按钮
PlayerControlViewDelegatePlayerControlView代理类


CAVideoPlayerControlView 方法(点击查看方法介绍)

属性说明
createWithFrame创建,并指定其Frame。
createWithCenter创建,并指定其Center。
initWithPath初始化Path。
initWithUrl初始化Url。


CAVideoPlayerControlView 属性说明

Title

类型:std::string

解释:标题,set/get{}。


ShowBackButton

类型:bool

解释:显示后退按钮,set/get{}。


PlayerControlViewDelegate

类型:CAVideoPlayerControlViewDelegate*

解释:PlayerControlView代理类,set/get{}。


CAVideoPlayerControlView 方法说明

static CAVideoPlayerControlView* createWithFrame(const DRect& rect);

返回值:CAVideoPlayerControlView*

参数:

类型参数名说明
const DRect&rect区域大小

解释:创建,并指定其Frame


static CAVideoPlayerControlView* createWithCenter(const DRect& rect);

返回值:CAVideoPlayerControlView*

参数:

类型参数名说明
const DRect&rect中心点的位置及大小

解释:创建,并设置其Center


void initWithPath(const std::string& szPath);

返回值:void

参数:

类型参数名说明
const std::string& szPath路径

解释:初始化并制定文件路径


void initWithUrl(const std::string& szUrl);

返回值:void

参数:

类型参数名说明
const std::string&szUrlUrl

解释:初始化并制定Url

CAAutoCollectionViewDelegate
CAVideoPlayerControlViewDelegate
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

四、调用系统支持

八、宏定义

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }