将值从 swift 应用程序发送到 Pebble 应用程序

send value from swift app to pebble app

我创建了一个简单的 swift 应用程序来显示您当前的速度,我想创建一个可以与 iOS 应用程序对话并显示速度的 Pebble 应用程序。所以我的问题是,如何将 swift 应用程序的值发送到 C/JS pebble 应用程序。

提前致谢!

你不能。 Pebble 尚未为 swift 应用程序提供 SDK。

现在有一种方法可以使用 swift。

创建一个字典对象,然后将其发送到 pebble 手表。

    let dictionary: NSDictionary
    dictionary = [key : value, key : value, key : value....]


    watch.appMessagesPushUpdate(dictionary as! [NSNumber : AnyObject]) { (watch, dictionary, error) in
        if ((error == nil))
        {
            NSLog("Successfully sent message.");
        } else if ((error) != nil)
        {
            NSLog("Error sending message: \(error)");
        }
    }
}