ios中OC给js传值的方法
Posted 雅尘恋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios中OC给js传值的方法相关的知识,希望对你有一定的参考价值。
JSContext *context=[_webView valueForKeyPath:@"documentView.webView.mainFrame.javascriptContext"];
NSString*funtionString=[NSString stringWithFormat:@"javascript:showExpressNumber(‘%@‘)",qrString];
[context evaluateScript:funtionString];//通过oc方法调用js的
以上是关于ios中OC给js传值的方法的主要内容,如果未能解决你的问题,请参考以下文章
iOS OC与JS的交互(JavaScriptCore实现)
iOS JS 交互之利用系统JSContext实现 JS调用oc方法