来自 appDelegate 的 javascript 调用:phonegap iOS
Posted
技术标签:
【中文标题】来自 appDelegate 的 javascript 调用:phonegap iOS【英文标题】:javascript call from appDelegate : phonegap iOS 【发布时间】:2011-10-20 09:13:56 【问题描述】:我如何在 appDelegate.m 类中获得 phonegap webview 的实例
我想在通知接收上调用 javascript 函数(即来自 appDelegate 类)
【问题讨论】:
【参考方案1】:为我解决了...
只需在didReceiveRemoteNotification
中与self.webView
通话
喜欢
NSString * jsCallBack = [NSString stringWithFormat:@"pushCallBack();"];
[self.webView stringByEvaluatingJavaScriptFromString:jsCallBack];
【讨论】:
在cordova > 3.0中,使用:self.viewController.webView stringByEvaluatingJavaScriptFromString @Amit Battan:当应用处于后台状态时点击通知时回调失败。任何线索为什么?以上是关于来自 appDelegate 的 javascript 调用:phonegap iOS的主要内容,如果未能解决你的问题,请参考以下文章
SWRevealViewController 不显示来自 Appdelegate 的状态栏推送
来自 appDelegate 的 pushViewController - 问题
来自 AppDelegate 的 UISegmentedControl
来自 AppDelegate 的 Objective-c 导入功能不起作用