获取推送通知时,didReceiveRemoteNotification方法不会在watch中调用

时间:2016-04-16 12:33:33

标签: ios apple-push-notifications watchkit apple-watch watch-os-2

我在ios中使用推送通知并观看。每当我收到推送通知时,我都想打电话给一个网络服务。 我在ExtensionDelegate.h中编写了以下方法。

- (void)didReceiveRemoteNotification:(NSDictionary *)userInfo { 
    NSLog(@"notification fired");
   //Code for web service call
}

我没有使用动态通知界面并使用静态界面来显示通知。我在设备(手表)中测试了推送通知。当我通过通知打开我的手表应用程序时,不会触发didReceiveRemoteNotification方法。我通过连接我的设备检查了xcode设备日志。

如何在手表中检测推送通知的时间?

0 个答案:

没有答案