0

我有一个网络应用程序,它部分在后台模式下运行(至少在当时,iOS 确实允许这样做)。当其中发生事件时,我会发出本地通知。当用户点击它时,应用程序回到前台,但我想在网络应用程序中调用一些 javascript 函数。如何从应用程序委托的 application:didReceiveLocalNotification 方法调用视图控制器内的函数?

4

1 回答 1

0

假设 myViewController 作为 rootViewController 你可以使用:

AppDelegate *delegate = (AppDelegate *) application.delegate;
[delegate.window.rootViewController launchJavascriptMethod];
于 2013-10-01T15:06:19.407 回答