1

現在の速度を表示するシンプルな Swift アプリを作成しました。iOS アプリと通信して速度を表示するペブル アプリを作成したいと考えています。私の質問は、Swift アプリから C/JS ペブル アプリに値を送信するにはどうすればよいかということです。

前もって感謝します!

4

2 に答える 2

0

できません。Pebble は、Swift アプリケーション用の SDK をまだ提供していません。

于 2015-03-24T13:13:02.377 に答える
0

現在、迅速にそれを行う方法があります。

辞書オブジェクトを作成し、それをペブル ウォッチに送信します。

    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)");
        }
    }
}
于 2016-06-15T06:34:29.517 に答える