我的ViewController中有一个UIWebView
。我需要在收到推送通知时将其重定向到特定页面。接收推送通知的方法在AppDelegate
。
那么如何从UIWebView
?
AppDelegate
答案 0 :(得分:1)
您可以使用nsnotification observers
如果收到推送通知,您可以发布如下通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"PushNotificationReceived" object:nil];
在控制器类中,您可以观察通知并执行您想要的任务。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reloadWebview:) name:@"PushNotificationReceived" object:nil];
这是其中一种方式。