I have setup WCSessions in both the appDelegate in the iOS app and in my InterfaceController and I am attempting to use sendMessage(_:replyHandler:errorHandler:) in the InterfaceController to send a message to the iOS app and receive a reply in the simulator.
After connecting to both targets for debugging my breakpoint for sendMessage(_:replyHandler:errorHandler:) on the watch is hit but the subsequent call to didReceiveMessage(_:replyHandler) in the iOS app is not called. The error handler is not called either. The WCSessions should both be activated and the delegates are set as well (I have both apps open and in the foreground). The boolean value for session.reachable is true before attempting to call sendMessage(_:replyHandler:errorHandler:)
Is there something else I am missing?
If need be, I can post the code in question.