My iOS app sends timely information via the WatchConnectivity framework. The receiving side implements the delegate of WCSession.
I have 2 interfaceControllers that need the information sent from the WCSession.
One is the glanceInterfaceController and the other is my mainInterfaceController.
Can both of them be assigned the delegate and both receive the userInfo or applicationContext sent from my iOS app at the same time? or can there only be one WCSession delegate assigned and my controllers need to get the data from the object that is assigned?
Thanks!