As a title, I found this error only in XCode11.0.
I send some data from app (written with react-native) to appleWatch.
I'm using now watch-connectivity and the method of 'updateApplicationContext' for communicating iPhone with it.
But appleWatch returned the following error.
The error log is below:
(1) [WC] WCSession is missing its delegate
(2) [WC] -[WCSession handleApplicationContextWithPairingID:]
_block_invoke delegate (null) does not implement session:didReceiveApplicationContext:
The source code is below:
let session = WCSession.default
override func awake(withContext context: Any?) {
super.awake(withContext: context)
session.delegate = self
session.activate()
}
func session(_ session: WCSession, didReceiveApplicationContext applicationContext: [String : Any]) {
//
}
And I found error(1) is not happened in XCode10.3.
... error(2) is also happened.
Do you have any idea regarding this error(1) or (2)?
I guess this is caused by XCode11.0, but I couldn't locate what causes this.
Thanks.