我正在使用
(void)application:(UIApplication *)application handleActionWithIdentifier :(可为空的NSString *)标识符 forRemoteNotification :( nonnull NSDictionary *)userInfo withResponseInfo :( nonnull NSDictionary *)responseInfo completionHandler :( nonnull void(^)())completionHandler
回复推送通知。在iOS 9下,我可以在不打开我的应用程序的情况下回复,但在iOS 10下,它会自动启动应用程序。
UIBackgroundFetchResult fetchResult = UIBackgroundFetchResultNewData
completionHandler(fetchResult);
在watchOS 3中,我无法回复Push on Apple Watch 关于如何解决这个问题的任何想法?