从swift app发送价值到pebble app

时间:2015-02-18 21:21:33

标签: pebble-watch pebble-sdk cloudpebble pebble-js

我创建了一个简单的swift应用程序,显示您当前的速度,并希望创建一个与iOS应用程序通信并显示速度的pebble应用程序。所以我的问题是,如何将swift应用程序中的值发送到C / JS pebble应用程序。

提前致谢!

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

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

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

    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)");
        }
    }
}