在 xcode 8 之前 - 我正在使用以下代码,但它现在不工作 - 来自 watch 端的委托方法没有被调用
if WCSession.isSupported() {
let watchSession = WCSession.defaultSession()
watchSession.delegate = self
watchSession.activateSession()
if watchSession.paired && watchSession.watchAppInstalled {
do {
try watchSession.updateApplicationContext(["key1": "value1"])
} catch let error as NSError {
print(error.description)
}
}
}
如果条件不满足,在上面的代码中。