codecamp

CAWebViewDelegate

类说明

CAWebView代理类


CAWebViewDelegate 方法

方法说明
onShouldStartLoading在应开始加载时触发
onDidFinishLoading在完成加载时触发
onDidFailLoading在未加载时触发
onJSCallback在JS调用返回时触发


CAWebViewDelegate 方法说明

virtual bool onShouldStartLoading(CAWebView* pWebView, const std::string &url);

返回值:

参数:

类型参数名说明
CAWebView* pWebView当前WebView
const std::string&urlURL地址

解释:在应开始加载时触发


virtual void onDidFinishLoading(CAWebView* pWebView, const std::string &url);

返回值:void

参数:

类型参数名说明
CAWebView* pWebView当前WebView
const std::string&urlURL地址

解释:在完成加载时触发


virtual void onDidFailLoading(CAWebView* pWebView, const std::string &url);

返回值:void

参数:

类型参数名说明
CAWebView* pWebView当前WebView
const std::string&urlURL地址

解释:在未加载时触发


virtual void onJSCallback(CAWebView* pWebView, const std::string &message);

返回值:

参数:

类型参数名说明
CAWebView* pWebView当前WebView
const std::string&messagemessage

解释:在JS调用返回时触发

CAWebView(Web视图控件)
CAGifView(显示Gif图片)
温馨提示
下载编程狮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; }