确实没有理由在应用程序周围传递 didReceiveNotification。它打算处理一次;话虽如此,我不确定您为什么要传递代表。
如果您想将视图控制器推到其他所有内容之上(我不知道您的视图层次结构,所以我不知道这是否真的是您会使用的东西),您也许可以执行以下操作:
[[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];
}