这是我的代码。
UILocalNotification *notification = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
if (notification) {
NSLog(@"app recieved notification from remote%@",notification);
[self application:application didReceiveRemoteNotification:(NSDictionary*)notification];
}else{
NSLog(@"app did not recieve notification");
}
当我运行应用程序时,我收到“应用程序未收到通知”。 这意味着该应用程序没有收到远程通知。 可能是什么问题?为什么我的应用程序没有收到远程通知?
答案 0 :(得分:-1)
尝试使用NSDictionary,而不是UILocalNotification
NSDictionary *notification = [launchOptions objectForKey: UIApplicationLaunchOptionsRemoteNotificationKey];