我正在使用模拟器,因为我没有Apple Watch来测试它。我在我的应用程序" App Delegate"。
中有此代码import UIKit
import CoreData
import Parse
import WatchConnectivity
@available(iOS 9.0, *)
extension AppDelegate : WCSessionDelegate {
func session(session: WCSession, didReceiveApplicationContext applicationContext: [String : AnyObject])
{
}
// Sender
@available(iOS 9.0, *)
func transferUserInfo(userInfo: [String : AnyObject]) -> WCSessionUserInfoTransfer? {
return WCSession.defaultSession().transferUserInfo(userInfo)
}
@available(iOS 9.0, *)
func session(session: WCSession, didFinishUserInfoTransfer userInfoTransfer: WCSessionUserInfoTransfer, error: NSError?) {
// implement this on the sender if you need to confirm that
// the user info did in fact transfer
}
@available(iOS 9.0, *) // Receiver
func session(session: WCSession, didReceiveUserInfo userInfo: [String : AnyObject]) {
}
}
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
if #available(iOS 9.0, *) {
if WCSession.isSupported() {
let session = WCSession.defaultSession()
session.delegate = self
session.activateSession()
WCSession.defaultSession().transferUserInfo(["hello" : "Hey Alvin Varghese"])
}
} else {
}
}
}
正如你们可以看到的那样,我通过" userInfo"发送虚拟数据。我在Apple Watch interfaceController中成功接收了它。代码如下。
import WatchKit
import Foundation
import WatchConnectivity
@available(iOS 9.0, *)
extension StartingPageInterfaceController : WCSessionDelegate {
// Sender
@available(iOS 9.0, *)
func transferUserInfo(userInfo: [String : AnyObject]) -> WCSessionUserInfoTransfer? {
return WCSession.defaultSession().transferUserInfo(userInfo)
}
@available(iOS 9.0, *)
func session(session: WCSession, didFinishUserInfoTransfer userInfoTransfer: WCSessionUserInfoTransfer, error: NSError?) {
// implement this on the sender if you need to confirm that
// the user info did in fact transfer
}
@available(iOS 9.0, *) // Receiver
func session(session: WCSession, didReceiveUserInfo userInfo: [String : AnyObject]) {
dispatch_async(dispatch_get_main_queue()) {
if let hey = userInfo["hello"] as? String
{
let alert : WKAlertAction = WKAlertAction(title: "Okay", style: WKAlertActionStyle.Default, handler: {
})
self.presentAlertControllerWithTitle("Okay", message: hey, preferredStyle: WKAlertControllerStyle.Alert, actions: [alert])
}
}
}
}
class StartingPageInterfaceController: WKInterfaceController {
@IBOutlet var searchButton: WKInterfaceButton!
override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)
if #available(iOS 9.0, *) {
if WCSession.isSupported() {
let session = WCSession.defaultSession()
session.delegate = self
session.activateSession()
}
} else {
}
}
}
好的,现在我在我的模拟器iPhone 6中运行它,我可以看到安装成功。现在我转移到Apple Watch 32mm模拟器并点击了刚安装的应用程序,打开并显示了这样的警报消息 - < "好的你好Alvin Varghese" (虽然父应用程序在iPhone 6模拟器中打开。)。现在我直接将Apple Watch应用程序安装到Apple Watch 32mm模拟器中,没有任何反应,我期待同样的警报消息(虽然在iPhone 6模拟器中没有打开父应用程序)。
如果我在Apple Watch 32mm模拟器中运行Apple Watch应用程序并立即打开父程序,我可以看到警报消息。那么这里发生了什么?我读到Watch Connectivity框架将在后台进行通信。
因此,我可以看到这只有在父设备处于活动状态时才有效,或者是因为我在模拟器上测试它?它会在物理设备中正常工作吗?
我的问题非常简单,当我打开Apple Watch时,我想要来自我的父应用程序的数据。我怎样才能实现这个目标?
让我知道你的想法,提前谢谢。
答案 0 :(得分:1)
首先,假设您希望在名为infoNeeded
的实例变量中获得所需的信息。您可以在类中声明它(例如)
var infoNeeded : [String : AnyObject]?
现在,当您希望获取所需信息时(例如,在WatchOS扩展中的ExtensionDelegate中的applicationDidBecomeActive
方法中),您需要从手表向iPhone发送消息。而且,您必须准备好从iOS收到的带有您需要的数据的潜在响应。为此,你做
let replyHandler: ([String : AnyObject]) -> Void = { reply in
self.infoNeeded = reply
}
let msg = ["InfoType" : "MainInfo"] // This must be something that allows the iOS WCSessionDelegate to know what info it must provide in the reply
WCSession.defaultSession().sendMessage(msg, replyHandler:replyHandler, errorHandler:nil) // you can pass an error handler if you wish
然后,在iOS的WCSessionDelegate中(在您的情况下,您的AppDelegate),您将不得不实现该功能
func session(_ session: WCSession, didReceiveMessage message: [String : AnyObject], replyHandler replyHandler: ([String : AnyObject]) -> Void) {
let data: [String : AnyObject] = <whatever info you need to pass>
replyHandler(data)
}
有了这个,你得到的是手表中的变量infoNeeded
充满了在iOS中创建的data
。