iOS
WCSessionDelegate
खोज…
परिचय
WCSessionDelegate
घड़ी OS2 + वॉचकोनेक्टिविटी का उपयोग करके काम करता है। var निगरानी: WCSession? func startWatchSession () {if (WCSession.isSupported ()) {watchSession = WCSession.default () watchSession! .Dlegate = self watchSession! (.activate ())} आवश्यक विधि को लागू करें: - 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