1

我正在使用WatchKit 2.0,并且注意到一个非常奇怪的行为。如果我使用我的手表应用程序超过 5 分钟,我开始从调用中收到超时错误,该WCSession sendMessage调用之前已被调用并成功完成。我将错误打印为:

Error Domain=WCErrorDomain Code=7012 "Message reply took too long." UserInfo={NSLocalizedDescription=Message reply took too long., NSLocalizedFailureReason=Reply timeout occured.}

我仍然可以在不同的地方拨打其他电话Interface Controllers,但我一直errorHandlersInterface Controllers被关闭的电话中(使用顶部的后退按钮)。

有谁知道可能导致这种行为的原因是什么?我没有在代码中结合分层和基于页面的界面样式,并且在使用应用程序的前 5 分钟内一切正常。

更新

这是代码:

    if WCSession.isSupported() {
        // Set the session to default session singleton
        let session = WCSession.defaultSession()

        // Fire the message to iPhone app
        session.sendMessage(["action": "getProfile", "memberId": citizen!.memberId], replyHandler: { (response) -> Void in


            if response["messageData"] != nil {
                // There is data in the reply
                let jsonObject = JSON(response["messageData"]!)

                ...

                // Display the profile details
                self.displayProfileDetails()



            } else if response["error"] != nil {
                // Get the error message and display it
                self.showAlert(nil, message: WatchUtils.getErrorString(response["error"]), action: .GET_PROFILE)
            }
            }, errorHandler: { (error) -> Void in
                print("error: \(error)")
                // Show alert
                self.showAlert(nil, message: NSLocalizedString("watch_connectivity_error", comment: "Watch can't connect to phone"), action: .GET_PROFILE)
        })
    }

最初被调用,但由于replyHandler某种原因在 5 分钟后被errorHandler调用,并且每隔几秒就被调用一次。

4

1 回答 1

0

几个月前我遇到了同样的问题。我想出的解决方案是使用一个变量来存储我给最后一个请求的 id,例如

self.lastCallId = "watch_load_clients"

如果没有收到匹配的 id(我也将 id 发回),那么我会忽略该请求。

我认为这只是一个蓝牙问题。

编辑:另外,您是否在提出请求但没有收到回复?这就是你的问题应该发生的情况。

于 2016-04-01T20:44:57.367 回答