接收推送通知(didReceiveRemoteNotification)时,如何将通知处理从应用程序委托传递给视图控制器? 这对于在视图上显示警报非常有用。发布视图或其他相关内容。
AppDelegate.m的伪代码示例:
- (void)application:(UIApplication*)application didReceiveRemoteNotification (NSDictionary*)userInfo{
NSLog(@"Received notification: %@", userInfo);
// Here send the userInfo or other data to the appropriate view controller for handling it there (for example showing an alert there) //
}
答案 0 :(得分:3)
没有理由在应用程序周围传递didReceiveNotification。它打算处理一次;话虽这么说,我不太确定你为什么要传递代表。
如果你想将视图控制器推到其他所有位置(我对你的View层次结构没有任何线索,所以我不知道你是否真的会使用它),你可能会做类似的事情:
[[self.window rootViewController] presentViewController:[[ViewControllerB alloc] initWithNib:@"ViewControllerB" bundle:nil] animated:YES completion:^{}];
此代码只是在所有内容之上抛出模态视图。
或者,如果出于某种原因,您确实需要在比应用程序委托更多的地方处理通知,那么您可以做两件事:
在AppDelegate标头中创建一个新的委托协议,并将其设置为您希望的任何处理程序 - 这方面的缺点(如上所述)是一次只有一个对象可以监听委托
@protocol MyNotificationDelegate <NSObject>
@required
-(void) applicationDidReceiveRemoteNotification: (NSDictionary*)userInfo;
@end
因为您喜欢的任何对象都可以收听此通知;在你想听的对象中:
AppDelegate *appDel = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"ReceivedNotification" object:appDel];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationReceived:) name:@"ReceivedNotification" object:appDel];
并添加功能:
-(void)notificationReceived :(NSNotification *)localNot{
NSLog(@"userInfo from push: %@",localNot.userInfo );
}
在您的应用程序委托回调:
- (void)application:(UIApplication*)application didReceiveRemoteNotification: (NSDictionary*)userInfo{
NSLog(@"Received notification: %@", userInfo);
[[NSNotificationCenter defaultCenter] postNotificationName:@"ReceivedNotification" object:self userInfo:userInfo];
}