如何在MMWormhole中传递一个对象?

时间:2015-09-08 12:29:28

标签: ios iphone swift watchkit

我正在使用MMWormhole框架将数据从iPhone共享到Apple Watch。

使用MMWormhole我只发送一个文本,但我想发送一个数据列表。 如何将iOS应用程序中的列表共享到WatchKit App。

对于发送消息,我使用:

 self.wormhole.passMessageObject(number, identifier: "numberIdentifier)

用于读取我使用的WatchKit App的数据:

 self.wormhole.listenForMessageWithIdentifier("letterIdentifier", listener: { (message) -> Void in
        self.lblValue.setText((message as? String))
    })

如何发送数组?

向蜜蜂发送消息?

0 个答案:

没有答案