When tapping on a push notification, the following method is not getting called on iOS 10 (beta 5) devices:
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {...
This prevents us from being able to use deeplinking from push messages on iOS 10. The problem occurs when using Testflight builds created with Xcode 7.3. The method does get called successfully on iOS 9 devices.
I have not been able to test push functionality using the Xcode 8 beta because I've consistently been getting the following error on iOS 10 devices when trying to register for push notifications:
Error Domain=NSCocoaErrorDomain Code=3000 "no valid 'aps-environment' entitlement string found for application" UserInfo={NSLocalizedDescription=no valid 'aps-environment' entitlement string found for application}
(I am getting this error via the didFailToRegisterForRemoteNotificationsWithError method)
This same app and provisioning profile is able to register and obtain a deviceToken just fine on iOS 9 devices using Xcode 8 and Xcode 7.3, and it also registers successfully on iOS 10 devices if you run it using a TestFlight build created with Xcode 7.3.
I am getting the same issue.
Current version of our app which built with Xcode 7, cannot deeplink from notifications on iOS 10 devices.
I figured out that iOS 10 calls
- application:didReceiveRemoteNotification:
instead of
- application:didReceiveRemoteNotification:fetchCompletionHandler:
So I had to implement the former method and call the latter inside.
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { [self application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:^(UIBackgroundFetchResult result) { }]; }
This is strange because it is against what is said in the documentation:
> Implement the application:didReceiveRemoteNotification:fetchCompletionHandler: method instead of this one whenever possible. If your delegate implements both methods, the app object calls the application:didReceiveRemoteNotification:fetchCompletionHandler: method.