当我收到推送通知时,如何触发当前视图控制器的功能(当前用户正在查看)。
提前感谢..
答案 0 :(得分:1)
最好的方法是,在您的app delegate方法中处理删除通知,使用NSNotificationCenter发送通知
[[NSNotificationCenter defaultCenter] postNotification:@"remoteNotification" withObject:whateverYouWantHere];
然后使用NSNotificationCenter添加任何感兴趣的UIViewController作为“remoteNotification”名称的观察者。