如何在swift中将数据从iphone发送到watchkit

前端之家收集整理的这篇文章主要介绍了如何在swift中将数据从iphone发送到watchkit前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在做一个示例项目,我喜欢将数据从iphone发送到WatchKit.我不知道该怎么做.任何帮助将不胜感激.提前致谢
在AppDelegate中添加方法
func application(application: UIApplication!,handleWatchKitExtensionRequest userInfo: [NSObject : AnyObject]!,reply: (([NSObject : AnyObject]!) -> Void)!)
{
   //define your dictionary
   reply(yourDict)
}

在Apple Watch Extension中的任何位置添加

var dict = ["test" : 4] //your dictionary/request to sent to the iPhone
if !WKInterfaceController.openParentApplication(dict,reply: { (reply,error) -> Void in
    println("\(reply)") //your reply data as Dictionary
}) {
    println("ERROR")
}

第一个函数将使用WKInterfaceController.openParentApplication触发,并将在reply参数中回复字典.

开发者论坛:
https://devforums.apple.com/message/1082689#1082689

原文链接:https://www.f2er.com/swift/320151.html

猜你在找的Swift相关文章