我为 iPhone 创建了一个 Phonegap 应用程序,到目前为止效果很好。
现在我需要从我的 Objective-C 代码中调用一个 JavaScript 函数。
我该怎么做呢?我已经尝试了以下方法,但它不起作用:
在AppDelegate.m方法“didFinishLaunchingWithOptions”中:
[self.viewController.webView stringByEvaluatingJavaScriptFromString:@"test()"];
在我的JavaScript文件中:
function test(){
alert("called");
}
结果:什么都没有发生。怎么了?