如何在xcode 8中分享手表和iphone之间的数据

时间:2016-12-05 08:17:22

标签: ios swift xcode8 apple-watch watch-os-3

在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)
            }
        }
    }
如果不满足条件,则在上面的代码中

1 个答案:

答案 0 :(得分:2)

确保您已在两个目标(手表和手机)中启用了群组功能