我希望聪明的人可以帮助我,因为大多数在线数据都已过时。 我有一个显示财务信息的iPhone应用程序。 我想在观看一瞥的屏幕上呈现这一点。
我可以让应用程序发送最新信息的字典,如果Glance屏幕和手机应用程序都打开,浏览会立即更新。
我想知道如何使用Glance屏幕向手机应用程序询问最新信息。 手机应用程序可能会关闭,因此需要唤醒,然后询问当前信息。
我正在使用swift 7和WatchOS 2.2和IOS 9.3
Stackoverflow上的很多信息都是指watchOS 1,因此不再有效。
我期待您的解决方案。
答案 0 :(得分:0)
查看WCSession,因为有不同的方法可以发送不同类型的数据。这个实现正在发送字典。
必须在手表和手机设备上设置WCSession
。 didFinishLaunchingWithOptions:
中的AppDelegate,我在其init
方法中使用ExtensionDelegate。使用import WatchConnectivity
时务必WCSession
。将AppDelegate用作下面的WCSessionDelegate
。
// AppDelegate.swift
class AppDelegate: UIResponder, UIApplicationDelegate, WCSessionDelegate {
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Setup session on phone
if WCSession.isSupported() {
let session = WCSession.defaultSession()
session.delegate = self
session.activateSession()
}
return true
}
// WCSessionDelegate method receiving message from watch and using callback
func session(session: WCSession, didReceiveMessage message: [String : AnyObject], replyHandler: ([String : AnyObject]) -> Void) {
// Reply with a dictionary of information based on the "message"
replyHandler(["Key": "Value"])
}
}
在手表上设置WCSession
:
// ExtensionDelegate.swift
override init() {
let session = WCSession.defaultSession()
session.activateSession()
}
将包含字典的消息发送到手机,以便在回调中接收信息:
// GlanceController.swift
WCSession.defaultSession().sendMessage(["Please give Glance data": "Value"], replyHandler:{ (response) in
// Extract data from response dictionary
}) { (error) in
// Handle error
}