我正在使用WCSession方法sendMessage:replyHandler:errorHandler:在iPhone和Apple Watch之间共享数据的应用程序上工作

实现该方法后,我得到如下错误:

WCSession _onqueue_notifyOfMessageError:withErrorHandler:errorHandler:是,带有WCErrorCodeDeliveryFailed。

错误=无法交付有效载荷。

import Foundation
import WatchKit
import WatchConnectivity

class ResultInterfaceController: WKInterfaceController, WCSessionDelegate {

override func awake(withContext context: Any?) {
    super.awake(withContext: context)

    let applicationData = ["name": "ViratKohli"]
    self.sendToPhone(data: applicationData)
}

func sendToPhone(data: [String: Any]) {

    if WCSession.isSupported() {

        let session = WCSession.default
        session().delegate = self
        session().activate()

        if WCSession.default().isReachable {

            session().sendMessage(data, replyHandler: {(_ replyMessage: [String: Any]) -> Void in

                print("ReplyHandler called = \(replyMessage)")
                WKInterfaceDevice.current().play(WKHapticType.notification)
            },
            errorHandler: {(_ error: Error) -> Void in

                print("Error = \(error.localizedDescription)")
            })
         }
    }
}
....

任何帮助表示赞赏。

最佳答案

  • 您在ios的WCSessionDelegate上是否有session(_ session: WCSession, didReceiveMessagemessage: [String : Any], replyHandler: @escaping ([String : Any]) ->Void)
  • 您是否在此方法内调用replyHandler()

  • 请注意,只会对不使用ReplyHandler发送的消息调用session(_ session: WCSession, didReceiveMessage message: [String : Any])

    10-06 13:25