xcode 8 中如何在手表和 iphone 之间共享数据
how to share data between watch and iphone in xcode 8
在 xcode 8 之前 - 我使用了以下代码,但它现在不起作用 - 未调用手表端的委托方法
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)
}
}
}
在上面的代码中,如果不满足条件。
确保您已在两个目标(手表和手机)中打开群组功能
在 xcode 8 之前 - 我使用了以下代码,但它现在不起作用 - 未调用手表端的委托方法
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)
}
}
}
在上面的代码中,如果不满足条件。
确保您已在两个目标(手表和手机)中打开群组功能