Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

didReceiveRemoteNotification not called in Background Mode

I am working on push notifications and the data I receive is in JSON format. How can I parse the JSON data, which is shown in the Notification Center below:

I only need the description

like image 788
krishna Avatar asked Feb 09 '23 07:02

krishna


2 Answers

if your app in background/foreground mode call this method

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler

if you used the above method you will face the following error in console

application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.

To Resolve this issue

follow the image of steps

enter image description here

if your app in foreground mode call this method

- (void)application:(UIApplication*)application didReceiveRemoteNotification:(NSDictionary*)userInfo

choice no-2

   - (void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
  UIApplicationState state = [application applicationState];
    // user tapped notification while app was in background
if (state == UIApplicationStateInactive || state == UIApplicationStateBackground) {
     // go to screen relevant to Notification content
} else {
     // App is in UIApplicationStateActive (running in foreground)
     // perhaps show an UIAlertView
}
}

Swift

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {
var state: UIApplicationState = application.applicationState()
// user tapped notification while app was in background
if state == .Inactive || state == .Background {
    // go to screen relevant to Notification content
}
else {
    // App is in UIApplicationStateActive (running in foreground)
    // perhaps show an UIAlertView
}
}
like image 76
Anbu.Karthik Avatar answered Feb 13 '23 07:02

Anbu.Karthik


If didReceiveRemoteNotification method is not called in background mode,please follow the below steps

First ON the Push Notification and Tick the check box of Remote Notifications of Background Mode in Capabilities of Target

Then

-(void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo  fetchCompletionHandler:(void  
(^)(UIBackgroundFetchResult))completionHandler  
{  

   if( [UIApplication sharedApplication].applicationState == UIApplicationStateInactive )  
   {  
      NSLog( @"INACTIVE" );  
   } 
   else if( [UIApplication sharedApplication].applicationState == UIApplicationStateBackground )  
   {  
      NSLog( @"BACKGROUND" );  
   }  
   else  
   {  
      NSLog( @"FOREGROUND" ); 
   }  

   return YES;
}
like image 44
user3182143 Avatar answered Feb 13 '23 05:02

user3182143