我正在使用 Firebase 控制台发送通知。在后台我收到通知,但当我在前台时,我没有收到任何通知。在文档中,据说可以实现AppDelegate application:didReceiveRemoteNotification:
所以我添加了它,但仍然不起作用
这是我的代码
// [START receive_message]
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
// Print message ID.
NSLog(@"Message ID: %@", userInfo[@"gcm.message_id"]);
// Pring full message.
NSLog(@"%@", userInfo);
}
// [END receive_message]