I have added firebase in my objective-C project. Integrated successfully, but I can't show notification in notification bar of iPhone.
when notification arrived this method is called and i get data there..
- (void)messaging:(FIRMessaging *)messaging didReceiveMessage:(FIRMessagingRemoteMessage *)remoteMessage {
NSLog(@"FCM Received data message: >> %@", [remoteMessage appData]);
}
But this method didn't call...
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
}