を配信することができませんでした私は、そのメソッドを実装した後、私のようなエラーが出るWCSession
方法sendMessage:replyHandler:errorHandler:
はWCErrorCodeDeliveryFailed:ペイロードは
を使用して、iPhoneとAppleウォッチの間でデータを共有するアプリに取り組んでいます:
WCSession _onqueue_notifyOfMessageErrorを:withErrorHandler:errorHandler:WCErrorCodeDeliveryFailedの場合はYESです。
Error =ペイロードを配信できませんでした。
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)")
})
}
}
}
....
助けてください。
おそらく[this](http://stackoverflow.com/questions/33200630/wcsession-sendmessagereplyhandler-error-code-7014-werrorcodedeliveryfailed)が役立ちますか? @ReinhardMännernope。 –
それはなかった – SahyadriChava