1

在 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)
            }
        }
    }

如果条件不满足,在上面的代码中。

4

1 回答 1

2

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

于 2016-12-14T12:02:21.047 回答