didReceiveRemoteNotification - 当前视图控制器中的调用函数

时间:2011-09-22 11:24:54

标签: iphone uiviewcontroller push-notification

当我收到推送通知时,如何触发当前视图控制器的功能(当前用户正在查看)。

提前感谢..

1 个答案:

答案 0 :(得分:1)

最好的方法是,在您的app delegate方法中处理删除通知,使用NSNotificationCenter发送通知

[[NSNotificationCenter defaultCenter] postNotification:@"remoteNotification" withObject:whateverYouWantHere];

然后使用NSNotificationCenter添加任何感兴趣的UIViewController作为“remoteNotification”名称的观察者。