iOS
WCSessionDelegate
サーチ…
前書き
WCSessionDelegate
を使用してOS2 +を監視して動作します。 var watchSession:WCSession?必要なメソッドを実装します。 - didReceiveApplicationContext
()メソッドを実装しdidReceiveApplicationContext
ウォッチキットコントローラ(WKInterfaceController)
import WatchConnectivity
var watchSession : WCSession?
override func awake(withContext context: Any?) {
super.awake(withContext: context)
// Configure interface objects here.
startWatchSession()
}
func startWatchSession(){
if(WCSession.isSupported()){
watchSession = WCSession.default()
watchSession!.delegate = self
watchSession!.activate()
}
}
//Callback in below delegate method when iOS app triggers event
func session(_ session: WCSession, didReceiveApplicationContext applicationContext: [String : Any]) {
print("did ReceiveApplicationContext at watch")
}
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow