Hi,
I'm relying in the UIApplicationDelegate method "application:didReceiveRemoteNotification:fetchCompletionHandler" to receive some silent notifications when the application is not in the foreground.
With iOS 11 beta 1, this method is no longer called when I send this push payload
{
"aps": {
"content-available": 1
},
"mydata": {
"foo": "bar"
}
}
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler {
}
Did anybody else noticed this behaviour?