我的 Objective-C 代码如下所示:
NSString *test = [NSString stringWithFormat: @"testFunction(%@)", details.name];
NSString *userName = [webView stringByEvaluatingJavaScriptFromString:test];
NSLog(@"Web response: %@",test);
这打印出来testFunction(the string of details.name here)
。
我的 javascript 看起来像这样:
<script type="text/javascript">document.write(title);</script>
var title;
function testFunction(var) {
title = var;
}