我正在創建一個具有聊天功能的Apple Watch應用程序。我希望在手錶應用程序運行並收到APNS消息時更新聊天對話。我知道在AppDelegate
,WatchKit 2.0在收到APNS時檢測到
application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject])
可以使用的功能,不過,當設備應用程序在前臺,沒有後臺運行,這只是。在WKUserNotificationInterfaceController
中,有功能didReceiveRemoteNotification
,但僅在使用動態通知時使用。當不使用動態通知並在前臺運行時,是否可以讓監視應用程序處理收到的遠程通知?
謝謝。那正是我需要的。 –