Silent push notifications only delivered if device is charging and/or app is foreground
I have implemented silent push notifications but I have noticed some strange behaviour. The silent push notifications are handled via: – (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler The silent push messages only seem to be received if the device is charging (ie cable connected) and/or if my app is foreground. If I disconnect the device … Read more