18

我正在开发一个在 iPhone 和 Apple Watch 之间共享数据的应用程序,使用WCSession方法 sendMessage:replyHandler:errorHandler:

实施该方法后,我收到如下错误:

WCSession _onqueue_notifyOfMessageError:withErrorHandler: errorHandler: YES with 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)")
            })
         }
    }
}
....

任何帮助表示赞赏。

4

2 回答 2

15
  1. 你有session(_ session: WCSession, didReceiveMessage message: [String : Any], replyHandler: @escaping ([String : Any]) -> Void)ios 端的 WCSessionDelegate 吗?
  2. replyHandler()在这个方法里面调用吗?

请注意,session(_ session: WCSession, didReceiveMessage message: [String : Any])只有在没有replyHandler 的情况下发送的消息才会被调用。

于 2017-03-22T12:52:27.883 回答
9

我也遇到了同样的麻烦。如果您使用 replyHandler 发送消息,则必须使用

func session(_ session: WCSession, didReceiveMessage message: [String : Any], replyHandler: @escaping ([String : Any]) -> Void) {

}

代替

func session(_ session: WCSession, didReceiveMessage message: [String : Any]) {

}

用于接收消息。

于 2018-04-26T07:31:55.563 回答