如何将数据从 iphone 发送到 swift 中的 watchkit
How to send data from iphone to watchkit in swift
我正在做一个示例项目,我想在其中将数据从 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
参数中的字典。
我正在做一个示例项目,我想在其中将数据从 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
参数中的字典。