来自appDelegate的javascript调用:phonegap iOS

时间:2011-10-20 09:13:57

标签: ios xcode4 cordova

我如何在appDelegate.m类中获得phonegap webview的实例

我想在通知接收上调用javascript函数(即来自appDelegate类)

1 个答案:

答案 0 :(得分:2)

为我解决了......

只需在self.webView

中使用didReceiveRemoteNotification进行通话

喜欢

NSString * jsCallBack = [NSString stringWithFormat:@"pushCallBack();"];
[self.webView stringByEvaluatingJavaScriptFromString:jsCallBack];